#ifndef HMDCDEDXMAKER_H
#define HMDCDEDXMAKER_H

#include "hreconstructor.h"
#include "TH2.h"
#include "TFile.h"

class HCategory;
class HIterator;
class HMdcDeDx;

class HMdcDeDxMaker : public HReconstructor {
protected:
  HCategory* trkcandCat;   //! pointer to the HMdcTrkCand data
  HCategory* segCat;       //! pointer to the HMdcSeg data
  Bool_t hasPrinted;       // flag is set if printStatus is called
  HIterator* trkcanditer;  //! iterator on HMdcTrkCand data.
  HMdcDeDx* mdcdedx;       //! dedx calculation parameters
  Int_t  method;           //! switch for different method of mdcdedx->calcdedx
  void   initParameters(void);
  void   setParContainers(void);

public:
  HMdcDeDxMaker(void);
  HMdcDeDxMaker(const Text_t* name,const Text_t* title);
  ~HMdcDeDxMaker(void);
  void   setDeDxMethod(Int_t vers) {method=vers;}
  Bool_t init(void);
  Bool_t finalize(void);
  void   printStatus();
  Int_t  execute(void);
  ClassDef(HMdcDeDxMaker,0) //  cal1 t2-t1 -> dEdx for Mdc data
};

#endif /* !HMDCDEDXMAKER_H */


Last change: Sat May 22 13:01:26 2010
Last generated: 2010-05-22 13:01

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.