//*-- Author : Rafal Lalik //*-- Created : 10.01.2017 //_HADES_CLASS_DESCRIPTION ///////////////////////////////////////////////////////////// // HFRpcHit // // This class contains Forward Rpc detector Hit data // // Containing hit (x, y, z, tof) data // ///////////////////////////////////////////////////////////// #include "hfrpchit.h" #include "hforwardtools.h" #include #include HFRpcHit::HFRpcHit() : TObject(), fX(0.0f), fY(0.0f), fZ(0.0f), fTof(0.0f), fClus1(-1),fClus2(-1) { } void HFRpcHit::print() const { printf(" fRPC hit: x= %f y= %f z= %f tof= %f clusters= %d , %d \n", fX, fY, fZ, fTof, fClus1, fClus2); }