| 1 | 
/** @file | 
| 2 | 
 * $Author: kusanagi $ | 
| 3 | 
 * $Date: 2005/03/06 04:33:02 $ | 
| 4 | 
 * $Revision: 4.0 $ | 
| 5 | 
 *  | 
| 6 | 
 * Header file for the algorithms used to read the techmodel calorimeter events. | 
| 7 | 
 */ | 
| 8 | 
 | 
| 9 | 
#ifndef TOF_READER_H | 
| 10 | 
#define TOF_READER_H | 
| 11 | 
 | 
| 12 | 
#include "techmodel/TechmodelAlgorithm.h" | 
| 13 | 
#include "event/PamelaRun.h" | 
| 14 | 
#include "event/physics/tof/TofEvent.h" | 
| 15 | 
 | 
| 16 | 
 | 
| 17 | 
namespace pamela { | 
| 18 | 
  namespace tof { | 
| 19 | 
    /** | 
| 20 | 
     * Algorithm to read fligthmodel calorimeter physics events. | 
| 21 | 
     */ | 
| 22 | 
    class TofReader: public pamela::techmodel::TechmodelAlgorithm { | 
| 23 | 
    private: | 
| 24 | 
      /** | 
| 25 | 
       * The physics event that is created in this algorithm. | 
| 26 | 
       */ | 
| 27 | 
      TofEvent *tof; | 
| 28 | 
    public: | 
| 29 | 
      TofReader(void); | 
| 30 | 
      virtual void Init(PamelaRun *); | 
| 31 | 
      virtual void RunEvent(int); | 
| 32 | 
      virtual void RunEvent(int, const char[] , long int); | 
| 33 | 
      virtual std::string GetVersionInfo(void) const; | 
| 34 | 
    }; | 
| 35 | 
  } | 
| 36 | 
} | 
| 37 | 
 | 
| 38 | 
#endif /* TOF_READER_H */ |