StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
FwdGeomUtils.h
1 #ifndef FWD_GEOM_UTILS_H
2 #define FWD_GEOM_UTILS_H
3 
4 #include "TGeoVolume.h"
5 #include "TGeoNode.h"
6 #include "TGeoMatrix.h"
7 #include "TGeoNavigator.h"
8 
9 class FwdGeomUtils {
10  public:
11 
12 
13 
14  FwdGeomUtils( TGeoManager * gMan ) {
15  if ( gMan != nullptr ){
16  _navigator = gMan->AddNavigator();
17  _gMan = gMan;
18  }
19  }
20 
21  ~FwdGeomUtils(){
22  if ( _gMan != nullptr && _navigator != nullptr){
23  _gMan->RemoveNavigator( _navigator );
24  }
25  }
26 
27  bool cd( const char* path ){
28  // Change to the specified path
29  bool ret = _navigator -> cd(path);
30  // If successful, set the node, the volume, and the GLOBAL transformation
31  // for the requested node. Otherwise, invalidate these
32  if ( ret ) {
33  _matrix = _navigator->GetCurrentMatrix();
34  _node = _navigator->GetCurrentNode();
35  _volume = _node->GetVolume();
36  } else {
37  _matrix = 0; _node = 0; _volume = 0;
38  }
39  return ret;
40  }
41 
42  vector<double> fttZ( vector<double> defaultZ ) {
43  double z0 = fttZ(0);
44  if ( z0 > 1.0 ) { // returns 0 on faiure
45  vector<double> z = {z0, fttZ(1), fttZ(2), fttZ(3)};
46  return z;
47  }
48  return defaultZ;
49  }
50  double fttZ( int index ) {
51 
52  // This ftt_z_delta is needed to match the z location of hits (midpint of active volume?) to the z location of the mother volume.
53  // NOTE: It may be possible to improve this when the higher precision FTT geometry model is added
54  const double ftt_z_delta = -0.5825245;
55  stringstream spath;
56  spath << "/HALL_1/CAVE_1/STGM_1/STFM_" << (index + 1) * 4 << "/";
57  bool can = cd( spath.str().c_str() );
58  if ( can && _matrix != nullptr ){
59  return _matrix->GetTranslation()[2] + ftt_z_delta;
60  }
61  return 0.0;
62  }
63 
64  vector<double> fstZ( vector<double> defaultZ ) {
65  double z0 = fstZ(0);
66  if ( z0 > 1.0 ) { // returns 0 on faiure
67  vector<double> z = {z0, fstZ(1), fstZ(2)};
68  return z;
69  }
70  return defaultZ;
71  }
72 
73  double fstZ( int index ) {
74  // starting in FtsmGeom v1.16? or 1.17
75  // the index are now 4,5,6
76  // hence +4 below
77  // also fixed typo, previously was incorrectly FTSD_
78  const double z_delta = 1.755;
79  stringstream spath;
80  spath << "/HALL_1/CAVE_1/FSTM_1/FSTD_" << (index + 4) << "/";
81  bool can = cd( spath.str().c_str() );
82  if ( can && _matrix != nullptr ){
83  return _matrix->GetTranslation()[2] + z_delta;
84  }
85  return 0.0;
86  }
87 
88  protected:
89  TGeoVolume *_volume = nullptr;
90  TGeoNode *_node = nullptr;
91  TGeoHMatrix *_matrix = nullptr;
92  TGeoIterator *_iter = nullptr;
93  TGeoNavigator *_navigator = nullptr;
94  TGeoManager *_gMan = nullptr;
95 };
96 
97 #endif