1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvspamela/yoda/event/EventCounter.h,v $ |
* $Source: /home/cvsmanager/yoda/event/EventCounter.h,v $ |
3 |
* $Id: EventCounter.h,v 1.7 2004/04/22 15:51:03 nagni Exp $ |
* $Id: EventCounter.h,v 5.1 2006/02/04 12:37:43 kusanagi Exp $ |
4 |
* $Author: nagni $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Header file for the EventCounter class. |
* Header file for the EventCounter class. |
7 |
*/ |
*/ |
9 |
#define EVENTCOUNTER_H |
#define EVENTCOUNTER_H |
10 |
|
|
11 |
#include <map> |
#include <map> |
12 |
//#include <root/TObject.h> |
#include "Exception.h" |
13 |
#include <TObject.h> //Substituted by Maurizio 05 Feb 2004 |
#include "PacketType.h" |
14 |
|
#include <TObject.h> |
|
#include "PscuHeader.h" |
|
15 |
|
|
16 |
namespace pamela { |
namespace pamela { |
17 |
/** |
/** |
21 |
class EventCounter : public TObject { |
class EventCounter : public TObject { |
22 |
private: |
private: |
23 |
int RunNumber; /**< Run number */ |
int RunNumber; /**< Run number */ |
24 |
|
|
|
// New Packets. |
|
25 |
int Pscu; |
int Pscu; |
26 |
|
int PhysEndRun; |
27 |
|
int CalibCalPulse1; |
28 |
|
int CalibCalPulse2; |
29 |
int Physics; |
int Physics; |
30 |
int Forced_Pkt; |
int CalibTrk1; |
31 |
int Calib_Trk; |
int CalibTrk2; |
32 |
int Calib_Trg; |
int CalibCal; |
33 |
int Calib_Cal; |
int CalibTof; |
34 |
int Calib_Trd; |
int CalibS4; |
35 |
int Calib_Tof; |
int CalibCalPed; |
36 |
int Calib_S4; |
int Calib1_Ac1; |
37 |
int Run_Header; |
int Calib1_Ac2; |
38 |
int Run_Trailer; |
int Calib2_Ac1; |
39 |
int Alarm; |
int Calib2_Ac2; |
40 |
int Khb; |
int RunHeader; |
41 |
|
int RunTrailer; |
42 |
|
int CalibHeader; |
43 |
|
int CalibTrailer; |
44 |
|
int InitHeader; |
45 |
|
int InitTrailer; |
46 |
int Log; |
int Log; |
47 |
int VarDump; |
int VarDump; |
48 |
int ArrDump; |
int ArrDump; |
49 |
int TabDump; |
int TabDump; |
50 |
int Tmtc; |
int Tmtc; |
51 |
int Mcmd; |
int Mcmd; |
52 |
int HA_Header_E5; |
int ForcedFECmd; |
53 |
|
int Ac1Init; |
54 |
|
int CalInit; |
55 |
|
int TrkInit; |
56 |
|
int TofInit; |
57 |
|
int TrgInit; |
58 |
|
int NdInit; |
59 |
|
int S4Init; |
60 |
|
int Ac2Init; |
61 |
|
int CalAlarm; |
62 |
|
int AcAlarm; |
63 |
|
int TrkAlarm; |
64 |
|
int TrgAlarm; |
65 |
|
int TofAlarm; |
66 |
|
int S4Alarm; |
67 |
|
int TsbT; |
68 |
|
int TsbB; |
69 |
|
|
70 |
typedef std::map<const pamela::PacketType *, int *> CounterMap; |
typedef std::map<const pamela::PacketType *, int *> CounterMap; |
71 |
CounterMap CMap; //! |
CounterMap CMap; //! |
72 |
|
|
73 |
public: |
public: |
74 |
EventCounter(int = 0); |
EventCounter(int = 0); |
75 |
/** Get the run number for the last read event of this type. */ |
/** Get the run number for the last read event of this type. */ |
76 |
int Get(pamela::PacketType const *) const; |
int getPscu() const { return Pscu; }; |
77 |
|
/** Get the run number for the last read event of this type. */ |
78 |
|
int Get(pamela::PacketType const *) const throw (NotExistingCounterException); |
79 |
/** Get the run number for the next event of this type. */ |
/** Get the run number for the next event of this type. */ |
80 |
int Next(pamela::PacketType const *) const; |
int Next(pamela::PacketType const *) const throw (NotExistingCounterException); |
81 |
int GetRunNumber(void) const { return RunNumber; } |
int GetRunNumber(void) const { return RunNumber; } |
82 |
void Increment(pamela::PacketType const *); |
void Increment(pamela::PacketType const *) throw (NotExistingCounterException); |
83 |
void PrintCounters() const ; |
void PrintCounters() const ; |
84 |
ClassDef(EventCounter, 1) |
ClassDef(EventCounter, 5) |
85 |
}; |
}; |
86 |
} |
} |
87 |
|
|
88 |
#endif /* EVENTCOUNTER_H */ |
#endif /* EVENTCOUNTER_H */ |
89 |
|
|
90 |
|
|