#ifndef HRPCCLUSTERSIM_H
#define HRPCCLUSTERSIM_H
#include "hrpccluster.h"
class HRpcClusterSim : public HRpcCluster {
protected:
Int_t TrackList[4];
Int_t RefList[4];
Int_t Track;
public:
HRpcClusterSim(void) {}
~HRpcClusterSim(void) {}
void clear(void);
void resetTrackList() {for(Int_t i=0;i<4;i++)TrackList[i] = -999;}
void resetRefList() {for(Int_t i=0;i<4;i++)RefList[i] = -999;}
void setTrackList (Int_t i, Int_t track) {TrackList[i]=track;}
void setTrackList (Int_t* array) {for(Int_t i=0;i<4;i++)TrackList[i] = array[i];}
void setRefList (Int_t i, Int_t ref) {RefList[i]=ref;}
void setRefList (Int_t* array) {for(Int_t i=0;i<4;i++)RefList[i] = array[i];}
void setTrack(Int_t atrack) {Track=atrack; }
Int_t getTrack() {return Track; }
void getTrackList(Int_t* array) {for(Int_t i=0;i<4;i++) array[i]=TrackList[i];}
void getRefList(Int_t* array) {for(Int_t i=0;i<4;i++) array[i]=RefList[i];}
Bool_t isTrack(Int_t track);
Bool_t isRef(Int_t ref);
ClassDef(HRpcClusterSim,1)
};
#endif /* HRPCCLUSTERSIM_H */
Last change: Sat May 22 13:11:07 2010
Last generated: 2010-05-22 13:11
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.