#ifndef HTOFCLUSTER_H
#define HTOFCLUSTER_H
#include "htofhit.h"
class HTofCluster : public HTofHit {
private:
Int_t clustSize;
Float_t clustProbAll;
Float_t clustProbLep;
public:
HTofCluster() { ;}
HTofCluster(HTofHit *hit);
HTofCluster(HTofHit *hit, Int_t cls, Float_t clpa, Float_t clpl);
~HTofCluster() { ;}
Int_t getClusterSize(void) {return clustSize;}
Float_t getClusterProbAll(void) {return clustProbAll;}
Float_t getClusterProbLep(void) {return clustProbLep;}
void setClusterSize(Int_t clustsize) {clustSize = clustsize;}
void setClusterProbAll(Float_t clustproball) {clustProbAll = clustproball;}
void setClusterProbLep(Float_t clustproblep) {clustProbLep = clustproblep;}
ClassDef(HTofCluster,3)
};
#endif /* !HTOFCLUSTER_H */
Last change: Sat May 22 13:15:52 2010
Last generated: 2010-05-22 13:15
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.