#ifndef HTOFINOCALIBRATER_H
#define HTOFINOCALIBRATER_H
using namespace std;
#include "hreconstructor.h"
#include <iostream> 
#include <iomanip>
#include "hlocation.h"
#include "htofinocalpar.h"

class HIterator;
class HCategory;
class HTofinoCalPar;

class HTofinoCalibrater : public HReconstructor {

private:
  HLocation fLoc;             //! Location for new object
  HCategory* fCalCat;       //! Pointer to cal data category
  HCategory* fRawCat;         //! Pointer to raw data category
  HIterator* iter;            //! Iterator over Raw category
  HTofinoCalPar *pTofinoCalPar; //! Calibration parameters 
  HCategory *fStartHitCat; //! Category with start hits
public:
  HTofinoCalibrater(void);
  HTofinoCalibrater(const Text_t* name,const Text_t* title);
  ~HTofinoCalibrater(void);
  void initParContainer();
  Bool_t init(void);
  Bool_t finalize(void) {return kTRUE;}
  Int_t execute(void);

public:
  ClassDef(HTofinoCalibrater,1) // Calibrater for TOFINO raw data
};

#endif

Last change: Sat May 22 13:16:37 2010
Last generated: 2010-05-22 13:16

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.