| Report problems to ATLAS LXR Team (with time and IP address indicated) |
|
[ source navigation ] [ diff markup ] [ identifier search ] [ general search ] |
||||
|
||||||
| Links to LXR source navigation pages for stable releases | [ 12.*.* ] [ 13.*.* ] [ 14.*.* ] [ 15.*.* ] | |||||
001 #include "MuonGeoModel/Component.h" 002 #include "MuonGeoModel/Technology.h" 003 004 namespace MuonGM { 005 006 Component::Component() 007 { 008 name = "XXXY"; 009 dx1 = 0.; 010 dx2 = 0.; 011 dy = 0.; 012 } 013 014 Component::Component(const Component& c) 015 { 016 // cout<<" Component c-tor"<<endl; 017 name=c.name; 018 dx1=c.dx1; 019 dx2=c.dx2; 020 dy=c.dy; 021 // name="temp"; 022 } 023 024 double Component::GetThickness() const 025 { 026 return 0; 027 } 028 029 030 } // namespace MuonGM 031
| [ source navigation ] | [ diff markup ] | [ identifier search ] | [ general search ] |
| Due to the LXR bug, the updates fail sometimes to remove references to deleted files. The Saturday's full rebuilds fix these problems | |
| This page was automatically generated by the LXR engine. |
|