// ------------------------------------------------------------------------- // ----- PndDrcHit source file ----- // ----- Created 12/11/07 by Annalisa Cecchi ----- // ----- ----- // ----- ----- // ------------------------------------------------------------------------- #include using std::cout; using std::endl; #include "PndDrcHit.h" // ----- Default constructor ------------------------------------------- PndDrcHit::PndDrcHit(): CbmHit() { } // ------------------------------------------------------------------------- // ----- Destructor ---------------------------------------------------- PndDrcHit::~PndDrcHit(){} // ------------------------------------------------------------------------- // ----- Public method Print ------------------------------------------- void PndDrcHit::Print(const Option_t* opt) const { cout << "DIRC hit: TrackID= " << fTrackID << endl; } // ------------------------------------------------------------------------- ClassImp(PndDrcHit)