///////////////////////////////////////////////////////////////////////////// // // fill Sts branches of GEANT ROOT tree // // last modified on 23/11/2015 by I. Koenig ///////////////////////////////////////////////////////////////////////////// #ifndef FILLSTS_H #define FILLSTS_H #include class HCategory; struct Hit { Char_t module; Char_t layer; Int_t cell; Char_t subcell; Float_t x, y, z; Float_t px, py, pz; Float_t tof; Float_t trklen; Float_t eloss; Int_t track; Int_t index; Int_t mult; }; void fillsts(void); Bool_t fillStsHit(HCategory* pKin, HCategory* pStsCat, const Hit & hit); #endif /*! FILLSTS_H */