/** CbmMuchHit class * * @author A.Kiseleva * @version 0.0 * @since 13.04.06 * * Hit class for MUon CHambers detector * */ #include using namespace std; #include "CbmMuchHit.h" ClassImp(CbmMuchHit) // ----- Default constructor ------------------------------------------- CbmMuchHit::CbmMuchHit(){ } // ------------------------------------------------------------------------- // ----- Standard constructor ------------------------------------------ CbmMuchHit::CbmMuchHit(Int_t detID, TVector3 pos, TVector3 dpos, Int_t index ) : CbmHit(detID, pos, dpos, index) { } // ------------------------------------------------------------------------- // ----- Destructor ---------------------------------------------------- CbmMuchHit::~CbmMuchHit() { } // ------------------------------------------------------------------------- // ----- Print ----------------------------------------------------------- void CbmMuchHit::Print(const Option_t* opt) const { } // -------------------------------------------------------------------------