#ifndef HHODOPIONMOM_H
#define HHODOPIONMOM_H
#include "hreconstructor.h"
#include "hlocation.h"
class HCategory;
class HIterator;
class HHodoPionMom : public HReconstructor {
protected:
HCategory *hitHodoCat;
HIterator *iter;
Int_t usemod1;
Int_t usemod2;
Float_t mean_max, mean_min;
Float_t diff_max, diff_min;
public:
HHodoPionMom(void);
HHodoPionMom(const Text_t* name,const Text_t* title);
~HHodoPionMom(void);
void set_mods(Int_t m,Int_t n){usemod1=m;usemod2=n;};
void set_range(Float_t mwmax, Float_t mwmin, Float_t dmax, Float_t dmin){
mean_max=mwmax; mean_min=mwmin; diff_max=dmax; diff_min=dmin;
};
Bool_t init(void);
Bool_t finalize(void) { return kTRUE; }
Int_t execute(void);
public:
ClassDef(HHodoPionMom,0)
};
#endif /* !HHODOPIONMOM_H */
Last change: Sat May 22 12:57:34 2010
Last generated: 2010-05-22 12:57
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.