| 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/Position.h" 002 003 namespace MuonGM { 004 005 Position::Position() 006 { 007 icut = 0; 008 subtype = 0; 009 phitype = 0; 010 zindex=0; 011 phiindex=0; 012 phi=0.; 013 radius=0.; 014 z=0.; 015 shift=0.; 016 inclination=0.; 017 alpha =0.; 018 beta = 0.; 019 gamma = 0.; 020 isMirrored = false; 021 isBarrelLike = false; // only needed if Pb positioners used... 022 023 // 024 isAssigned = false; 025 // 026 } 027 028 std::ostream& operator<<(std::ostream &os, const Position& p) 029 { 030 os<<" Position eta/phi index " 031 <<p.zindex<<"/" 032 <<p.phiindex<<" phi/z/R/s_shift " 033 <<p.phi<<" " 034 <<p.z<<" " 035 <<p.radius<<" " 036 <<p.shift << " alpha/beta/gamma " 037 <<p.alpha << " " 038 <<p.beta << " " 039 <<p.gamma; 040 041 return os; 042 } 043 } // namespace MuonGM 044
| [ 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. |
|