1 #ifndef FWD_GEOM_UTILS_H
2 #define FWD_GEOM_UTILS_H
4 #include "TGeoVolume.h"
6 #include "TGeoMatrix.h"
7 #include "TGeoNavigator.h"
15 if ( gMan !=
nullptr ){
16 _navigator = gMan->AddNavigator();
22 if ( _gMan !=
nullptr && _navigator !=
nullptr){
23 _gMan->RemoveNavigator( _navigator );
27 bool cd(
const char* path ){
29 bool ret = _navigator -> cd(path);
33 _matrix = _navigator->GetCurrentMatrix();
34 _node = _navigator->GetCurrentNode();
35 _volume = _node->GetVolume();
37 _matrix = 0; _node = 0; _volume = 0;
42 vector<double> fttZ( vector<double> defaultZ ) {
45 vector<double> z = {z0, fttZ(1), fttZ(2), fttZ(3)};
50 double fttZ(
int index ) {
54 const double ftt_z_delta = -0.5825245;
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;
64 vector<double> fstZ( vector<double> defaultZ ) {
67 vector<double> z = {z0, fstZ(1), fstZ(2)};
73 double fstZ(
int index ) {
78 const double z_delta = 1.755;
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;
89 TGeoVolume *_volume =
nullptr;
90 TGeoNode *_node =
nullptr;
91 TGeoHMatrix *_matrix =
nullptr;
92 TGeoIterator *_iter =
nullptr;
93 TGeoNavigator *_navigator =
nullptr;
94 TGeoManager *_gMan =
nullptr;