#include <EmcRecGeoSvc.h>
Definition at line 28 of file EmcRecGeoSvc.h.
◆ EmcRecGeoSvc()
EmcRecGeoSvc::EmcRecGeoSvc |
( |
const std::string & | name, |
|
|
ISvcLocator * | svcloc ) |
Definition at line 17 of file EmcRecGeoSvc.cxx.
17 : base_class(name, svcloc)
18{
19 fGdml = true;
20
21
22 declareProperty("Gdml",fGdml);
23
24 if(fGdml) {
25 fROOTGeo = new EmcRecROOTGeo();
26 }
27}
Referenced by EmcRecGeoSvc().
◆ ~EmcRecGeoSvc()
EmcRecGeoSvc::~EmcRecGeoSvc |
( |
| ) |
|
Definition at line 29 of file EmcRecGeoSvc.cxx.
30{
31 if(fGdml) {
32 if(fROOTGeo) delete fROOTGeo;
33 }
34}
◆ finalize()
StatusCode EmcRecGeoSvc::finalize |
( |
| ) |
|
|
virtual |
Definition at line 61 of file EmcRecGeoSvc.cxx.
61 {
62 MsgStream log(messageService(), name());
63 log << MSG::INFO << name() << ": End of Run" << endreq;
64 return StatusCode::SUCCESS;
65}
◆ GetBarrelh1()
double EmcRecGeoSvc::GetBarrelh1 |
( |
| ) |
const |
|
virtual |
Definition at line 145 of file EmcRecGeoSvc.cxx.
146{
147 return fBarrel.GetBarrelh1()/cm;
148}
◆ GetBarrelh2()
double EmcRecGeoSvc::GetBarrelh2 |
( |
| ) |
const |
|
virtual |
Definition at line 150 of file EmcRecGeoSvc.cxx.
151{
152 return fBarrel.GetBarrelh2()/cm;
153}
◆ GetBarrelh3()
double EmcRecGeoSvc::GetBarrelh3 |
( |
| ) |
const |
|
virtual |
Definition at line 155 of file EmcRecGeoSvc.cxx.
156{
157 return fBarrel.GetBarrelh3()/cm;
158}
◆ GetBarrelL()
double EmcRecGeoSvc::GetBarrelL |
( |
| ) |
const |
|
virtual |
◆ GetBarrelNPhiMax()
int EmcRecGeoSvc::GetBarrelNPhiMax |
( |
| ) |
const |
|
virtual |
Definition at line 165 of file EmcRecGeoSvc.cxx.
166{
167 return fBarrel.GetBarrelNPhiMax();
168}
◆ GetBarrelNThetaMax()
int EmcRecGeoSvc::GetBarrelNThetaMax |
( |
| ) |
const |
|
virtual |
Definition at line 170 of file EmcRecGeoSvc.cxx.
171{
172 return fBarrel.GetBarrelNThetaMax();
173}
◆ GetBarrelOffset1()
double EmcRecGeoSvc::GetBarrelOffset1 |
( |
| ) |
const |
|
virtual |
Definition at line 135 of file EmcRecGeoSvc.cxx.
136{
137 return fBarrel.GetBarrelOffset1()/cm;
138}
◆ GetBarrelOffset2()
double EmcRecGeoSvc::GetBarrelOffset2 |
( |
| ) |
const |
|
virtual |
Definition at line 140 of file EmcRecGeoSvc.cxx.
141{
142 return fBarrel.GetBarrelOffset2()/cm;
143}
◆ GetBarrelR()
double EmcRecGeoSvc::GetBarrelR |
( |
| ) |
const |
|
virtual |
◆ GetCCenter()
Definition at line 98 of file EmcRecGeoSvc.cxx.
98 {
99 if(fGdml) {
100 return fROOTGeo->GetCCenter(id)/cm;
101 } else {
103
105 center=fBarrel.GetCCenter(id);
106 } else {
107 center=fEndCap.GetCCenter(id);
108 }
109
110 return center/cm;
111 }
112}
HepGeom::Point3D< double > HepPoint3D
static bool is_barrel(const Identifier &id)
Test for barrel.
◆ GetCFrontCenter()
Definition at line 114 of file EmcRecGeoSvc.cxx.
114 {
115 if(fGdml) {
116 return fROOTGeo->GetCFrontCenter(id)/cm;
117 } else {
119
121 frontCenter=fBarrel.GetCFrontCenter(id);
122 } else {
123 frontCenter=fEndCap.GetCFrontCenter(id);
124 }
125
126 return frontCenter/cm;
127 }
128}
◆ GetCrystal()
Definition at line 67 of file EmcRecGeoSvc.cxx.
67 {
68 if(fGdml) {
69 return fROOTGeo->GetCrystal(id);
70 } else {
71 EmcRecCrystal cry;
72
74 cry=fBarrel.GetCrystal(id);
75 } else {
76 cry=fEndCap.GetCrystal(id);
77 }
78
79 return cry;
80 }
81
82}
◆ GetCrystalPoint()
Definition at line 84 of file EmcRecGeoSvc.cxx.
84 {
85 EmcRecCrystal cry;
86 if(fGdml) {
87 cry=fROOTGeo->GetCrystal(id);
88 } else {
90 cry=fBarrel.GetCrystal(id);
91 } else {
92 cry=fEndCap.GetCrystal(id);
93 }
94 }
96}
HepPoint3D Get(int index) const
◆ initialize()
StatusCode EmcRecGeoSvc::initialize |
( |
| ) |
|
|
virtual |
Definition at line 46 of file EmcRecGeoSvc.cxx.
46 {
47 MsgStream log(messageService(), name());
48 log << MSG::INFO << name() << ": Start of run initialisation" << endreq;
49
50 StatusCode sc = Service::initialize();
51 if ( sc.isFailure() ) return sc;
52
53
54 if(fGdml) {
55 fROOTGeo->InitFromXML();
56 }
57 return StatusCode::SUCCESS;
58}
The documentation for this class was generated from the following files: