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