//*-- Author : Rafal Lalik //*-- Created : 10.01.2017 //_HADES_CLASS_DESCRIPTION ///////////////////////////////////////////////////////////// // HFRpcCluster // // This class contains Forward Rpc detector Cluster data // // Containing cluster (x, y, z, tof) data // ///////////////////////////////////////////////////////////// #include "hfrpccluster.h" #include #include // HFRpcCluster::HFRpcCluster() : TObject(), // fX(0.0),fY(0.0f),fZ(0.0f),fTof(0.0f),fTrack(-1),fCalIdx1(-1),fCalIdx2(-1) // { // } void HFRpcCluster::print() const { printf(" fRPC cluster: x=%7.2f y=%7.2f z=%7.2f tof=%.2f track= %d cal_objects= %d, %d\n", fX, fY, fZ, fTof, fTrack, fCalIdx1, fCalIdx2); }