| 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/AlignPos.h" 002 003 namespace MuonGM { 004 005 AlignPos::AlignPos() 006 { 007 zindex=0; 008 phiindex=0; 009 tras=0.; 010 traz=0.; 011 trat=0.; 012 rots=0.; 013 rotz=0.; 014 rott=0.; 015 isBarrel = true; 016 isTrapezoid = false; 017 } 018 019 std::ostream& operator<<(std::ostream &os, const AlignPos& p) 020 { 021 os<<"phi ind=" << p.phiindex << " z ind=" << p.zindex << 022 " tra_s=" << p.tras << " tra_z=" << p.traz << " tra_t=" << p.trat 023 <<" (in mm)" 024 <<" rot_s=" << p.rots*1000. << " rot_z=" << p.rotz*1000. << " rot_t=" << p.rott*1000. 025 <<" (angles in milli-radians) " 026 <<" is barrel? " << p.isBarrel << " station type= " << p.tectype; 027 028 return os; 029 } 030 031 } // namespace MuonGM 032
| [ 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. |
|