Class Reference for E1039 Core & Analysis Software
GeomSvc.h
Go to the documentation of this file.
1 /*
2 GeomSvc.h
3 
4 Definition of the class GeomSvc, which provide geometry service to the
5 whole tracking system.
6 
7 For now the drift time is not used so as to avoid left-right ambiguity
8 
9 Author: Kun Liu, liuk@fnal.gov
10 Created: 10-18-2011
11 
12 Updated by Kun Liu on 07-03-2012
13 --- Support all detector planes including chambers, hodoscopes, and prop.
14 tubes
15 --- The convention of detector plane ID is: firstly chambers, then hodos,
16 and then prop. tubes
17 */
18 
19 #ifndef _GEOMSVC_H
20 #define _GEOMSVC_H
21 
22 #include <iostream>
23 #include <vector>
24 #include <string>
25 #include <map>
26 #include <unordered_map>
27 
28 #include <TVector3.h>
29 #include <TVectorD.h>
30 #include <TMatrixD.h>
31 #include <TSpline.h>
32 
33 #include <GlobalConsts.h>
34 #include <phool/recoConsts.h>
35 
36 class Plane
37 {
38 public:
39  //Default constructor
40  Plane();
41 
42  //Get interception with track
43  double intercept(double tx, double ty, double x0_track, double y0_track) const;
44 
45  //X, Y, U, V conversion
46  double getX(double w, double y) const { return w/costheta - y*tantheta; }
47  double getY(double x, double w) const { return w/sintheta - x/tantheta; }
48  double getW(double x, double y) const { return x*costheta + y*sintheta; }
49 
50  //Get wire position by elementID
51  double getWirePosition(int elementID) const;
52 
53  //Get end point vector by elementID
54  TVectorD getEndPoint(int elementID, int sign = -1) const;
55 
56  //Calculate the internal variables
57  void update();
58 
59  //Debugging output
60  friend std::ostream& operator << (std::ostream& os, const Plane& plane);
61 
62 public:
63  //Detector identifier
65  std::string detectorName;
66  int planeType; //X = 1, angleFromVert > 0 = 2, angleFromVert < 0 = 3, Y = 4
67 
68  //Ideal properties
69  int nElements;
70  double spacing;
71  double cellWidth;
72  double xoffset;
73  double overlap;
74  double angleFromVert;
75  double sintheta;
76  double costheta;
77  double tantheta;
78 
79  //Survey info
80  double x0; //x0, y0, z0 define the center of detector
81  double y0;
82  double z0;
83  double x1; //x1, y1 define the lower/left edge of detector
84  double y1;
85  double z1; //z1 is the upstream z position of the detector
86  double x2; //x2, y2 define the upper/right edge of detector
87  double y2;
88  double z2; //z2 is the downstream z position of the detector
89  double thetaX;
90  double thetaY;
91  double thetaZ;
92 
93  //Alignment info
94  double deltaX;
95  double deltaY;
96  double deltaZ;
97  double deltaW; //for chambers and hodos
98  double deltaW_module[9]; //for prop. tubes only
99  double rotX;
100  double rotY;
101  double rotZ;
102  double resolution;
103 
104  //Final position/rotation
105  double xc;
106  double yc;
107  double zc;
108  double wc;
109  double rX;
110  double rY;
111  double rZ;
112 
113  //Geometric setup
114  TVectorD nVec = TVectorD(3); //Perpendicular to plane
115  TVectorD uVec = TVectorD(3); //measuring direction
116  TVectorD vVec = TVectorD(3); //wire direction
117  TVectorD xVec = TVectorD(3); //X direction
118  TVectorD yVec = TVectorD(3); //Y direction
119  TMatrixD rotM = TMatrixD(3, 3); //rotation matrix
120 
121  //Calibration info
122  double tmin;
123  double tmax;
124  TSpline3* rtprofile;
125 
126  //Vector to contain the wire positions
127  std::vector<double> elementPos;
128 };
129 
131 
163 class GeomSvc
164 {
165 public:
167  static GeomSvc* instance();
168 
170  void init();
171  void initPlaneDirect();
172  void initPlaneDbSvc();
173  void initWireLUT();
174  void loadCalibration(const std::string& calibrateFile);
175  void loadOnlineAlignment(const std::string& alignmentFile_mille);
176  void loadAlignment(const std::string& alignmentFile_chamber, const std::string& alignmentFile_hodo, const std::string& alignmentFile_prop);
177  void loadMilleAlignment(const std::string& alignmentFile_mille);
178 
180  void close();
181 
183  void toLocalDetectorName(std::string& detectorName, int& eID);
184 
186  void setDetectorX0(const std::string detectorName, const double val) {
187  int index = getDetectorID(detectorName);
188  planes[index].x0 = val;
189  planes[index].update();
190  initWireLUT();
191  }
192  void setDetectorY0(const std::string detectorName, const double val) {
193  int index = getDetectorID(detectorName);
194  planes[index].y0 = val;
195  planes[index].update();
196  initWireLUT();
197  }
198  void setDetectorZ0(const std::string detectorName, const double val) {
199  int index = getDetectorID(detectorName);
200  planes[index].z0 = val;
201  planes[index].update();
202  initWireLUT();
203  }
204 
205  double getDetectorX0(const std::string detectorName) const {
206  int index = getDetectorID(detectorName);
207  return planes[index].x0;
208  }
209  double getDetectorY0(const std::string detectorName) const {
210  int index = getDetectorID(detectorName);
211  return planes[index].y0;
212  }
213  double getDetectorZ0(const std::string detectorName) const {
214  int index = getDetectorID(detectorName);
215  return planes[index].z0;
216  }
217 
219  int getDetectorID(const std::string & detectorName) const
220  {
221  return map_detectorID.find(detectorName)!=map_detectorID.end() ? map_detectorID.at(detectorName) : 0;
222  }
223  std::string getDetectorName(const int & detectorID) const
224  {
225  return map_detectorName.find(detectorID)!=map_detectorName.end() ? map_detectorName.at(detectorID) : "";
226  }
227 
228  std::vector<int> getDetectorIDs(std::string pattern);
229  bool findPatternInDetector(int detectorID, std::string pattern);
230 
231  const Plane& getPlane(int detectorID) const { return planes[detectorID]; }
232  Plane getPlane(int detectorID) { return planes[detectorID]; }
233  Plane* getPlanePtr(int detectorID) { return &planes[detectorID]; }
234 
235  double getPlanePosition(int detectorID) const { return planes[detectorID].zc; }
236  double getPlaneSpacing(int detectorID) const { return planes[detectorID].spacing; }
237  double getPlaneOverlap(int detectorID) const { return planes[detectorID].overlap; }
238  double getCellWidth(int detectorID) const { return planes[detectorID].cellWidth; }
239  double getCostheta(int detectorID) const { return planes[detectorID].costheta; }
240  double getSintheta(int detectorID) const { return planes[detectorID].sintheta; }
241  double getTantheta(int detectorID) const { return planes[detectorID].tantheta; }
242  double getPlaneScaleX(int detectorID) const { return planes[detectorID].x2 - planes[detectorID].x1; }
243  double getPlaneScaleY(int detectorID) const { return planes[detectorID].y2 - planes[detectorID].y1; }
244  double getPlaneScaleZ(int detectorID) const { return planes[detectorID].z2 - planes[detectorID].z1; }
245  double getPlaneResolution(int detectorID) const { return planes[detectorID].resolution; }
246 
247  double getPlaneCenterX(int detectorID) const { return planes[detectorID].xc; }
248  double getPlaneCenterY(int detectorID) const { return planes[detectorID].yc; }
249  double getPlaneCenterZ(int detectorID) const { return planes[detectorID].zc; }
250  double getRotationInX(int detectorID) const { return planes[detectorID].rX; }
251  double getRotationInY(int detectorID) const { return planes[detectorID].rY; }
252  double getRotationInZ(int detectorID) const { return planes[detectorID].rZ; }
253  double getStereoAngle(int detectorID) const { return planes[detectorID].angleFromVert+planes[detectorID].rZ; }
254 
255  double getPlaneZOffset(int detectorID) const { return planes[detectorID].deltaZ; }
256  double getPlanePhiOffset(int detectorID) const { return planes[detectorID].rotZ; }
257  double getPlaneWOffset(int detectorID) const { return planes[detectorID].deltaW; }
258  double getPlaneWOffset(int detectorID, int moduleID) const { return planes[detectorID].deltaW_module[moduleID]; }
259 
260  int getPlaneNElements(int detectorID) const { return planes[detectorID].nElements; }
261  int getPlaneType(int detectorID) const { return planes[detectorID].planeType; }
262 
263  bool isChamber(const int detectorID) const;
264  bool isChamber(const std::string detectorName) const;
265  bool isHodo(const int detectorID) const;
266  bool isHodo(const std::string detectorName) const;
267  bool isPropTube(const int detectorID) const;
268  bool isPropTube(const std::string detectorName) const;
269  bool isDPHodo(const int detectorID) const;
270  bool isDPHodo(const std::string detectorName) const;
271  bool isInh(const int detectorID) const;
272  bool isInh(const std::string detectorName) const;
273 
274  int getHodoStation(const int detectorID) const;
275  int getHodoStation(const std::string detectorName) const;
276 
277  int getTriggerLv(int detectorID) { return map_detid_triggerlv[detectorID]; }
278 
280  double getInterception(int detectorID, double tx, double ty, double x0, double y0) const { return planes[detectorID].intercept(tx, ty, x0, y0); }
281  double getInterceptionFast(int detectorID, double tx, double ty, double x0, double y0) const;
282  double getInterceptionFast(int detectorID, double x_exp, double y_exp) const { return planes[detectorID].getW(x_exp, y_exp); }
283  double getDCA(int detectorID, int elementID, double tx, double ty, double x0, double y0);
284 
286  void getMeasurement(int detectorID, int elementID, double& measurement, double& dmeasurement);
287  double getMeasurement(int detectorID, int elementID);
288  void getEndPoints(int detectorID, int elementID, TVectorD& ep1, TVectorD& ep2);
289  void getEndPoints(int detectorID, int elementID, TVector3& ep1, TVector3& ep2);
290  void get2DBoxSize(int detectorID, int elementID, double& x_min, double& x_max, double& y_min, double& y_max);
291  void getWireEndPoints(int detectorID, int elementID, double& x_min, double& x_max, double& y_min, double& y_max);
292  int getExpElementID(int detectorID, double pos_exp);
293 
295  bool isCalibrationLoaded() { return calibration_loaded; }
296  double getDriftDistance(int detectorID, double tdcTime);
297  bool isInTime(int detectorID, double tdcTime);
298  TSpline3* getRTCurve(int detectorID) { return planes[detectorID].rtprofile; }
299 
301  double getYinStereoPlane(int detectorID, double x, double u) { return planes[detectorID].getY(x, u); }
302  double getUinStereoPlane(int detectorID, double x, double y) { return planes[detectorID].getW(x, y); }
303  double getXinStereoPlane(int detectorID, double u, double y) { return planes[detectorID].getX(u, y); }
304 
306  bool isInPlane(int detectorID, double x, double y);
307  bool isInElement(int detectorID, int elementID, double x, double y, double tolr = 0.);
308  bool isInKMAG(double x, double y);
309 
311  double Z_KMAG_BEND() const { return rc->get_DoubleFlag("Z_KMAG_BEND"); }
312  void Z_KMAG_BEND(const double v) { rc->set_DoubleFlag("Z_KMAG_BEND", v); }
313  double Z_FMAG_BEND() const { return rc->get_DoubleFlag("Z_FMAG_BEND"); }
314  void Z_FMAG_BEND(const double v) { rc->set_DoubleFlag("Z_FMAG_BEND", v); }
315  double Z_KFMAG_BEND() const { return rc->get_DoubleFlag("Z_KFMAG_BEND"); }
316  void Z_KFMAG_BEND(const double v) { rc->set_DoubleFlag("Z_KFMAG_BEND", v); }
317  double ELOSS_KFMAG() const { return rc->get_DoubleFlag("ELOSS_KFMAG"); }
318  void ELOSS_KFMAG(const double v) { rc->set_DoubleFlag("ELOSS_KFMAG", v); }
319  double ELOSS_ABSORBER() const { return rc->get_DoubleFlag("ELOSS_ABSORBER"); }
320  void ELOSS_ABSORBER(const double v) { rc->set_DoubleFlag("ELOSS_ABSORBER", v); }
321  double Z_ST2() const { return rc->get_DoubleFlag("Z_ST2"); }
322  void Z_ST2(const double v) { rc->set_DoubleFlag("Z_ST2", v); }
323  double Z_ABSORBER() const { return rc->get_DoubleFlag("Z_ABSORBER"); }
324  void Z_ABSORBER(const double v) { rc->set_DoubleFlag("Z_ABSORBER", v); }
325  double Z_REF() const { return rc->get_DoubleFlag("Z_REF"); }
326  void Z_REF(const double v) { rc->set_DoubleFlag("Z_REF", v); }
327  double Z_TARGET() const { return rc->get_DoubleFlag("Z_TARGET"); }
328  void Z_TARGET(const double v) { rc->set_DoubleFlag("Z_TARGET", v); }
329  double Z_DUMP() const { return rc->get_DoubleFlag("Z_DUMP"); }
330  void Z_DUMP(const double v) { rc->set_DoubleFlag("Z_DUMP", v); }
331  double Z_ST1() const { return rc->get_DoubleFlag("Z_ST1"); }
332  void Z_ST1(const double v) { rc->set_DoubleFlag("Z_ST1", v); }
333  double Z_ST3() const { return rc->get_DoubleFlag("Z_ST3"); }
334  void Z_ST3(const double v) { rc->set_DoubleFlag("Z_ST3", v); }
335  double FMAG_HOLE_LENGTH() const { return rc->get_DoubleFlag("FMAG_HOLE_LENGTH"); }
336  void FMAG_HOLE_LENGTH(const double v) { rc->set_DoubleFlag("FMAG_HOLE_LENGTH", v); }
337  double FMAG_HOLE_RADIUS() const { return rc->get_DoubleFlag("FMAG_HOLE_RADIUS"); }
338  void FMAG_HOLE_RADIUS(const double v) { rc->set_DoubleFlag("FMAG_HOLE_RADIUS", v); }
339  double FMAG_LENGTH() const { return rc->get_DoubleFlag("FMAG_LENGTH"); }
340  void FMAG_LENGTH(const double v) { rc->set_DoubleFlag("FMAG_LENGTH", v); }
341  double Z_UPSTREAM() const { return rc->get_DoubleFlag("Z_UPSTREAM"); }
342  void Z_UPSTREAM(const double v) { rc->set_DoubleFlag("Z_UPSTREAM", v); }
343  double Z_DOWNSTREAM() const { return rc->get_DoubleFlag("Z_DOWNSTREAM"); }
344  void Z_DOWNSTREAM(const double v) { rc->set_DoubleFlag("Z_DOWNSTREAM", v); }
345 
347  void printAlignPar();
348  void printTable();
349  void printWirePosition();
350 
351  static void UseDbSvc(const bool val) { use_dbsvc = val; }
352  static bool UseDbSvc() { return use_dbsvc; }
353 
354 private:
355 
356  //All the detector planes
358 
359  //flag of loading calibration parameters
360  bool calibration_loaded;
361 
362  //Position of KMag
363  double xmin_kmag, xmax_kmag;
364  double ymin_kmag, ymax_kmag;
365  double zmin_kmag, zmax_kmag;
366 
367  //Mapping of detectorName to detectorID, and vice versa
368  std::map<std::string, int> map_detectorID;
369  std::map<int, std::string> map_detectorName;
370 
372  std::map<int, int> map_detid_triggerlv;
373 
374  //Mapping to wire position
375  std::unordered_map<int, double> map_wirePosition[nChamberPlanes+nHodoPlanes+nHodoPlanes+nDarkPhotonPlanes+1];
376 
377  //Mapping to wire end position - wire actually includes all detectors
378  std::unordered_map<int, TVectorD> map_endPoint1[nChamberPlanes+nHodoPlanes+nHodoPlanes+nDarkPhotonPlanes+1];
379  std::unordered_map<int, TVectorD> map_endPoint2[nChamberPlanes+nHodoPlanes+nHodoPlanes+nDarkPhotonPlanes+1];
380 
381  //Pointer to the reco constants
382  recoConsts* rc;
383 
384  //singleton pointor
385  static GeomSvc* p_geometrySvc;
386 
387  static bool use_dbsvc;
388 };
389 
390 #endif
#define nPropPlanes
Definition: GlobalConsts.h:8
#define nChamberPlanes
Definition: GlobalConsts.h:6
#define nDarkPhotonPlanes
Definition: GlobalConsts.h:9
#define nHodoPlanes
Definition: GlobalConsts.h:7
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
int getTriggerLv(int detectorID)
Definition: GeomSvc.h:277
void printWirePosition()
Definition: GeomSvc.cxx:1104
double ELOSS_KFMAG() const
Definition: GeomSvc.h:317
bool findPatternInDetector(int detectorID, std::string pattern)
Definition: GeomSvc.cxx:614
void printTable()
Definition: GeomSvc.cxx:1134
void initWireLUT()
Definition: GeomSvc.cxx:537
void initPlaneDirect()
Definition: GeomSvc.cxx:411
double Z_DOWNSTREAM() const
Definition: GeomSvc.h:343
double getDriftDistance(int detectorID, double tdcTime)
Definition: GeomSvc.cxx:834
int getDetectorID(const std::string &detectorName) const
Get the plane position.
Definition: GeomSvc.h:219
double Z_KMAG_BEND() const
Getter/setters for a set of fixed parameters - should not be changed unless absolutely necessary.
Definition: GeomSvc.h:311
bool isInElement(int detectorID, int elementID, double x, double y, double tolr=0.)
Definition: GeomSvc.cxx:630
void setDetectorZ0(const std::string detectorName, const double val)
Definition: GeomSvc.h:198
double getPlanePosition(int detectorID) const
Definition: GeomSvc.h:235
double ELOSS_ABSORBER() const
Definition: GeomSvc.h:319
void Z_FMAG_BEND(const double v)
Definition: GeomSvc.h:314
bool isPropTube(const int detectorID) const
Return "true" for prop tube planes.
Definition: GeomSvc.cxx:792
bool isHodo(const int detectorID) const
Return "true" for hodo planes.
Definition: GeomSvc.cxx:782
double getPlaneWOffset(int detectorID, int moduleID) const
Definition: GeomSvc.h:258
double getDetectorY0(const std::string detectorName) const
Definition: GeomSvc.h:209
void getWireEndPoints(int detectorID, int elementID, double &x_min, double &x_max, double &y_min, double &y_max)
Definition: GeomSvc.cxx:725
double Z_UPSTREAM() const
Definition: GeomSvc.h:341
void printAlignPar()
Debugging print of the content.
Definition: GeomSvc.cxx:1124
void Z_DOWNSTREAM(const double v)
Definition: GeomSvc.h:344
double getRotationInZ(int detectorID) const
Definition: GeomSvc.h:252
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
void toLocalDetectorName(std::string &detectorName, int &eID)
Convert the official detectorName to local detectorName.
Definition: GeomSvc.cxx:740
double getPlaneZOffset(int detectorID) const
Definition: GeomSvc.h:255
double getPlanePhiOffset(int detectorID) const
Definition: GeomSvc.h:256
void Z_ABSORBER(const double v)
Definition: GeomSvc.h:324
double getPlaneCenterY(int detectorID) const
Definition: GeomSvc.h:248
static void UseDbSvc(const bool val)
Definition: GeomSvc.h:351
void Z_ST2(const double v)
Definition: GeomSvc.h:322
double getYinStereoPlane(int detectorID, double x, double u)
Convert the stereo hits to Y value.
Definition: GeomSvc.h:301
void loadMilleAlignment(const std::string &alignmentFile_mille)
Definition: GeomSvc.cxx:1022
Plane * getPlanePtr(int detectorID)
Definition: GeomSvc.h:233
void Z_ST1(const double v)
Definition: GeomSvc.h:332
const Plane & getPlane(int detectorID) const
Definition: GeomSvc.h:231
double Z_FMAG_BEND() const
Definition: GeomSvc.h:313
TSpline3 * getRTCurve(int detectorID)
Definition: GeomSvc.h:298
double getPlaneOverlap(int detectorID) const
Definition: GeomSvc.h:237
void getMeasurement(int detectorID, int elementID, double &measurement, double &dmeasurement)
Convert the detectorID and elementID to the actual hit position.
Definition: GeomSvc.cxx:651
static bool UseDbSvc()
Definition: GeomSvc.h:352
void Z_KMAG_BEND(const double v)
Definition: GeomSvc.h:312
void loadOnlineAlignment(const std::string &alignmentFile_mille)
Load parameters used in the online-alignment mode.
Definition: GeomSvc.cxx:885
void getEndPoints(int detectorID, int elementID, TVectorD &ep1, TVectorD &ep2)
Definition: GeomSvc.cxx:662
void setDetectorY0(const std::string detectorName, const double val)
Definition: GeomSvc.h:192
double getPlaneCenterX(int detectorID) const
Definition: GeomSvc.h:247
bool isInKMAG(double x, double y)
Definition: GeomSvc.cxx:643
double FMAG_HOLE_LENGTH() const
Definition: GeomSvc.h:335
bool isInh(const int detectorID) const
Return "true" for BeforeInh and AfterInh signals.
Definition: GeomSvc.cxx:812
double Z_ABSORBER() const
Definition: GeomSvc.h:323
double getPlaneCenterZ(int detectorID) const
Definition: GeomSvc.h:249
int getPlaneType(int detectorID) const
Definition: GeomSvc.h:261
double Z_DUMP() const
Definition: GeomSvc.h:329
double getDetectorZ0(const std::string detectorName) const
Definition: GeomSvc.h:213
void setDetectorX0(const std::string detectorName, const double val)
TODO temp solution to overwrite the y0 of a plane.
Definition: GeomSvc.h:186
void FMAG_LENGTH(const double v)
Definition: GeomSvc.h:340
double FMAG_LENGTH() const
Definition: GeomSvc.h:339
double getPlaneResolution(int detectorID) const
Definition: GeomSvc.h:245
double Z_KFMAG_BEND() const
Definition: GeomSvc.h:315
double getXinStereoPlane(int detectorID, double u, double y)
Definition: GeomSvc.h:303
int getPlaneNElements(int detectorID) const
Definition: GeomSvc.h:260
void FMAG_HOLE_LENGTH(const double v)
Definition: GeomSvc.h:336
double getPlaneScaleY(int detectorID) const
Definition: GeomSvc.h:243
double Z_TARGET() const
Definition: GeomSvc.h:327
void Z_TARGET(const double v)
Definition: GeomSvc.h:328
double getPlaneScaleZ(int detectorID) const
Definition: GeomSvc.h:244
void init()
Initialization, either from MySQL or from ascii file.
Definition: GeomSvc.cxx:240
double getPlaneWOffset(int detectorID) const
Definition: GeomSvc.h:257
double getTantheta(int detectorID) const
Definition: GeomSvc.h:241
double getInterceptionFast(int detectorID, double x_exp, double y_exp) const
Definition: GeomSvc.h:282
void Z_DUMP(const double v)
Definition: GeomSvc.h:330
double getRotationInY(int detectorID) const
Definition: GeomSvc.h:251
int getHodoStation(const int detectorID) const
Return a station number (1-4) for hodo planes or "0" for others.
Definition: GeomSvc.cxx:822
double getDetectorX0(const std::string detectorName) const
Definition: GeomSvc.h:205
double getPlaneScaleX(int detectorID) const
Definition: GeomSvc.h:242
int getExpElementID(int detectorID, double pos_exp)
Definition: GeomSvc.cxx:677
double getRotationInX(int detectorID) const
Definition: GeomSvc.h:250
bool isInTime(int detectorID, double tdcTime)
Definition: GeomSvc.cxx:1099
double getInterceptionFast(int detectorID, double tx, double ty, double x0, double y0) const
Definition: GeomSvc.cxx:860
double getCostheta(int detectorID) const
Definition: GeomSvc.h:239
double getStereoAngle(int detectorID) const
Definition: GeomSvc.h:253
void loadAlignment(const std::string &alignmentFile_chamber, const std::string &alignmentFile_hodo, const std::string &alignmentFile_prop)
Definition: GeomSvc.cxx:924
double Z_ST2() const
Definition: GeomSvc.h:321
double Z_ST3() const
Definition: GeomSvc.h:333
void loadCalibration(const std::string &calibrateFile)
Definition: GeomSvc.cxx:1061
std::string getDetectorName(const int &detectorID) const
Definition: GeomSvc.h:223
void Z_REF(const double v)
Definition: GeomSvc.h:326
bool isChamber(const int detectorID) const
Return "true" for chamber planes.
Definition: GeomSvc.cxx:772
void Z_UPSTREAM(const double v)
Definition: GeomSvc.h:342
double getInterception(int detectorID, double tx, double ty, double x0, double y0) const
Get the interception of a line an a plane.
Definition: GeomSvc.h:280
double getDCA(int detectorID, int elementID, double tx, double ty, double x0, double y0)
Definition: GeomSvc.cxx:865
double getPlaneSpacing(int detectorID) const
Definition: GeomSvc.h:236
double getUinStereoPlane(int detectorID, double x, double y)
Definition: GeomSvc.h:302
void initPlaneDbSvc()
Definition: GeomSvc.cxx:419
bool isCalibrationLoaded()
Calibration related.
Definition: GeomSvc.h:295
void Z_KFMAG_BEND(const double v)
Definition: GeomSvc.h:316
Plane getPlane(int detectorID)
Definition: GeomSvc.h:232
void FMAG_HOLE_RADIUS(const double v)
Definition: GeomSvc.h:338
void ELOSS_KFMAG(const double v)
Definition: GeomSvc.h:318
void Z_ST3(const double v)
Definition: GeomSvc.h:334
bool isInPlane(int detectorID, double x, double y)
See if a point is in a plane.
Definition: GeomSvc.cxx:622
void close()
Close the geometry service before exit or starting a new one.
Definition: GeomSvc.cxx:223
void ELOSS_ABSORBER(const double v)
Definition: GeomSvc.h:320
double Z_REF() const
Definition: GeomSvc.h:325
void get2DBoxSize(int detectorID, int elementID, double &x_min, double &x_max, double &y_min, double &y_max)
Definition: GeomSvc.cxx:700
double getSintheta(int detectorID) const
Definition: GeomSvc.h:240
bool isDPHodo(const int detectorID) const
Return "true" for DP hodo planes.
Definition: GeomSvc.cxx:802
double FMAG_HOLE_RADIUS() const
Definition: GeomSvc.h:337
double getCellWidth(int detectorID) const
Definition: GeomSvc.h:238
std::vector< int > getDetectorIDs(std::string pattern)
Definition: GeomSvc.cxx:594
double Z_ST1() const
Definition: GeomSvc.h:331
virtual double get_DoubleFlag(const std::string &name) const
Definition: PHFlag.cc:49
virtual void set_DoubleFlag(const std::string &name, const double flag)
Definition: PHFlag.cc:77
Definition: GeomSvc.h:37
int nElements
Definition: GeomSvc.h:69
double resolution
Definition: GeomSvc.h:102
double spacing
Definition: GeomSvc.h:70
double rotY
Definition: GeomSvc.h:100
double angleFromVert
Definition: GeomSvc.h:74
TVectorD nVec
Definition: GeomSvc.h:114
double deltaZ
Definition: GeomSvc.h:96
double rotX
Definition: GeomSvc.h:99
TVectorD yVec
Definition: GeomSvc.h:118
double overlap
Definition: GeomSvc.h:73
double x2
Definition: GeomSvc.h:86
std::vector< double > elementPos
Definition: GeomSvc.h:127
TMatrixD rotM
Definition: GeomSvc.h:119
double sintheta
Definition: GeomSvc.h:75
double deltaW_module[9]
Definition: GeomSvc.h:98
double zc
Definition: GeomSvc.h:107
double rotZ
Definition: GeomSvc.h:101
TSpline3 * rtprofile
Definition: GeomSvc.h:124
double rZ
Definition: GeomSvc.h:111
double costheta
Definition: GeomSvc.h:76
double tantheta
Definition: GeomSvc.h:77
double z1
Definition: GeomSvc.h:85
double cellWidth
Definition: GeomSvc.h:71
double xc
Definition: GeomSvc.h:105
double getWirePosition(int elementID) const
Definition: GeomSvc.cxx:146
void update()
Definition: GeomSvc.cxx:78
int planeType
Definition: GeomSvc.h:66
double tmax
Definition: GeomSvc.h:123
double y2
Definition: GeomSvc.h:87
double xoffset
Definition: GeomSvc.h:72
TVectorD getEndPoint(int elementID, int sign=-1) const
Definition: GeomSvc.cxx:151
double deltaW
Definition: GeomSvc.h:97
double thetaX
Definition: GeomSvc.h:89
TVectorD xVec
Definition: GeomSvc.h:117
double x0
Definition: GeomSvc.h:80
int detectorID
Definition: GeomSvc.h:64
double z0
Definition: GeomSvc.h:82
double x1
Definition: GeomSvc.h:83
TVectorD uVec
Definition: GeomSvc.h:115
double thetaZ
Definition: GeomSvc.h:91
Plane()
Definition: GeomSvc.cxx:33
double rY
Definition: GeomSvc.h:110
double yc
Definition: GeomSvc.h:106
std::string detectorName
Definition: GeomSvc.h:65
double getY(double x, double w) const
Definition: GeomSvc.h:47
double deltaX
Definition: GeomSvc.h:94
double intercept(double tx, double ty, double x0_track, double y0_track) const
Definition: GeomSvc.cxx:129
double deltaY
Definition: GeomSvc.h:95
double tmin
Definition: GeomSvc.h:122
double getW(double x, double y) const
Definition: GeomSvc.h:48
double y1
Definition: GeomSvc.h:84
double y0
Definition: GeomSvc.h:81
TVectorD vVec
Definition: GeomSvc.h:116
double getX(double w, double y) const
Definition: GeomSvc.h:46
double thetaY
Definition: GeomSvc.h:90
double z2
Definition: GeomSvc.h:88
double wc
Definition: GeomSvc.h:108
double rX
Definition: GeomSvc.h:109
friend std::ostream & operator<<(std::ostream &os, const Plane &plane)
Definition: GeomSvc.cxx:180