// // #ifndef GRooTtx_hh_seen #define GRooTtx_hh_seen #include #include "TObject.h" #include "TBits.h" #include "TLorentzVector.h" #include "TObjString.h" namespace COMET { /// An object to describe the true G4 vertex associated to the IGlobalVertex class ITrueVertex : public TObject { public: virtual ~ITrueVertex(); /// The position of the vertex TLorentzVector Position; /// The vertex ID from G4 Int_t ID; /// Purity of reconstructed - true vertex association double Pur; /// Efficiency of vertex association of tracks double Eff; ClassDef(ITrueVertex, 1); }; } // comet namespace #endif