-
Stephen A. Wood authored
For the most part this is making sure that the loop variable in a for loop is of the same type as the variable that it is compared against (Often a UInt_t).
Stephen A. Wood authoredFor the most part this is making sure that the loop variable in a for loop is of the same type as the variable that it is compared against (Often a UInt_t).
THcHitList.h 944 B
#ifndef ROOT_THcHitList
#define ROOT_THcHitList
#include "THcRawHit.h"
#include "THaDetMap.h"
#include "THaEvData.h"
#include "TClonesArray.h"
#include "TObject.h"
using namespace std;
//////////////////////////////////////////////////////////////////////////
//
// THcHitList
//
//////////////////////////////////////////////////////////////////////////
//class THaDetMap;
class THcHitList {
public:
virtual ~THcHitList();
THcHitList();
virtual Int_t DecodeToHitList( const THaEvData& );
void InitHitList(THaDetMap* detmap,
const char *hitclass, Int_t maxhits);
TClonesArray* GetHitList() const {return fRawHitList; }
UInt_t fNRawHits;
Int_t fNMaxRawHits;
TClonesArray* fRawHitList; // List of raw hits
TClass* fRawHitClass; // Class of raw hit object to use
THaDetMap* fdMap;
protected:
ClassDef(THcHitList,0); // List of raw hits sorted by plane, counter
};
#endif