1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/event/EventCounter.h,v $ |
* $Source: /home/cvsmanager/yoda/event/EventCounter.h,v $ |
3 |
* $Id: EventCounter.h,v 1.2 2004/07/06 13:31:14 kusanagi Exp $ |
* $Id: EventCounter.h,v 1.5 2004/07/29 16:18:54 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Header file for the EventCounter class. |
* Header file for the EventCounter class. |
9 |
#define EVENTCOUNTER_H |
#define EVENTCOUNTER_H |
10 |
|
|
11 |
#include <map> |
#include <map> |
12 |
//#include <root/TObject.h> |
|
13 |
#include <TObject.h> //Substituted by Maurizio 05 Feb 2004 |
#include <TObject.h> //Substituted by Maurizio 05 Feb 2004 |
14 |
|
|
15 |
#include "PscuHeader.h" |
#include "PscuHeader.h" |
22 |
class EventCounter : public TObject { |
class EventCounter : public TObject { |
23 |
private: |
private: |
24 |
int RunNumber; /**< Run number */ |
int RunNumber; /**< Run number */ |
25 |
|
|
|
// New Packets. |
|
26 |
int Pscu; |
int Pscu; |
27 |
|
int PhysEndRun; |
28 |
|
int CalibCalPulse1; |
29 |
|
int CalibCalPulse2; |
30 |
int Physics; |
int Physics; |
31 |
int Forced_Pkt; |
int CalibTrkBoth; |
32 |
int Calib_Trk1; |
int Calib_Trk1; |
33 |
int Calib_Trk2; |
int Calib_Trk2; |
34 |
int Calib_Cal; |
int Calib_Cal; |
|
int Calib_CalPed; |
|
35 |
int Calib_Trd; |
int Calib_Trd; |
36 |
int Calib_Tof; |
int Calib_Tof; |
37 |
int Calib_S4; |
int Calib_S4; |
38 |
|
int Calib_CalPed; |
39 |
|
int Calib_Ac; |
40 |
int Run_Header; |
int Run_Header; |
41 |
int Run_Trailer; |
int Run_Trailer; |
42 |
int Alarm; |
int CalibHeader; |
43 |
int Khb; |
int CalibTrailer; |
44 |
|
int InitHeader; |
45 |
|
int InitTrailer; |
46 |
|
int EventTrk; |
47 |
|
int TestTrk; |
48 |
|
int TestTof; |
49 |
int Log; |
int Log; |
50 |
int VarDump; |
int VarDump; |
51 |
int ArrDump; |
int ArrDump; |
52 |
int TabDump; |
int TabDump; |
53 |
int Tmtc; |
int Tmtc; |
54 |
int Mcmd; |
int Mcmd; |
55 |
int HA_Header_E5; |
int ForcedFECmd; |
56 |
|
int AcInit; |
57 |
|
int CalInit; |
58 |
|
int TrkInit; |
59 |
|
int TofInit; |
60 |
|
int TrgInit; |
61 |
|
int CalAlarm; |
62 |
|
int AcAlarm; |
63 |
|
int TrkAlarm; |
64 |
|
int TrgAlarm; |
65 |
|
int TofAlarm; |
66 |
|
|
67 |
typedef std::map<const pamela::PacketType *, int *> CounterMap; |
typedef std::map<const pamela::PacketType *, int *> CounterMap; |
68 |
CounterMap CMap; //! |
CounterMap CMap; //! |
69 |
|
|
70 |
public: |
public: |
71 |
EventCounter(int = 0); |
EventCounter(int = 0); |
72 |
/** Get the run number for the last read event of this type. */ |
/** Get the run number for the last read event of this type. */ |
73 |
|
int getPscu() const { return Pscu; }; |
74 |
|
/** Get the run number for the last read event of this type. */ |
75 |
int Get(pamela::PacketType const *) const; |
int Get(pamela::PacketType const *) const; |
76 |
/** Get the run number for the next event of this type. */ |
/** Get the run number for the next event of this type. */ |
77 |
int Next(pamela::PacketType const *) const; |
int Next(pamela::PacketType const *) const; |