00001 #ifndef CENTAURE_HH
00002 #define CENTAURE_HH
00003
00004
00005
00006
00007
00008
00009
00010 #include "SteerDesc.hh"
00011
00012 #include "mTypes.h"
00013 #include <stdlib.h>
00014 #define CENTAURE "centaure"
00015
00016 #include <string>
00017 class Event;
00018 class Detector;
00019
00020
00021
00022
00023 class Centaure {
00024
00025
00026 public:
00027 virtual ~Centaure() ;
00028 static int getNextEvent(Event& eventToFill, FILE* currentFile,const Detector& aDet, i32 lastEventId);
00029
00030
00031
00032 private:
00033 Centaure();
00034 static int parse(Event& event, FILE* inputFile, const Detector& aDet, i32& lastEventId);
00035
00036
00037 protected:
00038 };
00039
00040 #endif
00041