1 |
kusanagi |
2.4 |
/** @file |
2 |
kusanagi |
1.2 |
* $Source: /home/cvsmanager/yoda/event/EventCounter.h,v $ |
3 |
kusanagi |
5.0 |
* $Id: EventCounter.h,v 4.4 2005/05/28 10:44:09 kusanagi Exp $ |
4 |
kusanagi |
1.2 |
* $Author: kusanagi $ |
5 |
kusanagi |
1.1 |
* |
6 |
|
|
* Header file for the EventCounter class. |
7 |
|
|
*/ |
8 |
|
|
#ifndef EVENTCOUNTER_H |
9 |
|
|
#define EVENTCOUNTER_H |
10 |
|
|
|
11 |
|
|
#include <map> |
12 |
kusanagi |
2.2 |
#include "Exception.h" |
13 |
kusanagi |
1.1 |
#include "PscuHeader.h" |
14 |
|
|
|
15 |
|
|
namespace pamela { |
16 |
|
|
/** |
17 |
|
|
* Event counter. Contains the event numbers of the last read event of |
18 |
|
|
* each event type. |
19 |
|
|
*/ |
20 |
|
|
class EventCounter : public TObject { |
21 |
|
|
private: |
22 |
|
|
int RunNumber; /**< Run number */ |
23 |
kusanagi |
1.5 |
|
24 |
kusanagi |
1.1 |
int Pscu; |
25 |
kusanagi |
1.5 |
int PhysEndRun; |
26 |
|
|
int CalibCalPulse1; |
27 |
|
|
int CalibCalPulse2; |
28 |
kusanagi |
1.1 |
int Physics; |
29 |
kusanagi |
2.5 |
int CalibTrk1; |
30 |
|
|
int CalibTrk2; |
31 |
|
|
int CalibCal; |
32 |
|
|
int CalibTof; |
33 |
|
|
int CalibS4; |
34 |
|
|
int CalibCalPed; |
35 |
kusanagi |
2.4 |
int Calib1_Ac1; |
36 |
|
|
int Calib1_Ac2; |
37 |
|
|
int Calib2_Ac1; |
38 |
|
|
int Calib2_Ac2; |
39 |
kusanagi |
2.5 |
int RunHeader; |
40 |
|
|
int RunTrailer; |
41 |
kusanagi |
1.5 |
int CalibHeader; |
42 |
|
|
int CalibTrailer; |
43 |
|
|
int InitHeader; |
44 |
|
|
int InitTrailer; |
45 |
|
|
int EventTrk; |
46 |
|
|
int TestTrk; |
47 |
kusanagi |
1.6 |
int TestTof; |
48 |
kusanagi |
1.1 |
int Log; |
49 |
|
|
int VarDump; |
50 |
|
|
int ArrDump; |
51 |
|
|
int TabDump; |
52 |
|
|
int Tmtc; |
53 |
|
|
int Mcmd; |
54 |
kusanagi |
1.5 |
int ForcedFECmd; |
55 |
kusanagi |
2.4 |
int Ac1Init; |
56 |
kusanagi |
1.5 |
int CalInit; |
57 |
|
|
int TrkInit; |
58 |
|
|
int TofInit; |
59 |
|
|
int TrgInit; |
60 |
kusanagi |
2.1 |
int NdInit; |
61 |
kusanagi |
2.3 |
int S4Init; |
62 |
kusanagi |
2.4 |
int Ac2Init; |
63 |
kusanagi |
1.6 |
int CalAlarm; |
64 |
|
|
int AcAlarm; |
65 |
|
|
int TrkAlarm; |
66 |
|
|
int TrgAlarm; |
67 |
|
|
int TofAlarm; |
68 |
kusanagi |
2.3 |
int S4Alarm; |
69 |
kusanagi |
2.6 |
int TsbT; |
70 |
|
|
int TsbB; |
71 |
kusanagi |
1.1 |
|
72 |
|
|
typedef std::map<const pamela::PacketType *, int *> CounterMap; |
73 |
|
|
CounterMap CMap; //! |
74 |
kusanagi |
1.6 |
|
75 |
kusanagi |
1.1 |
public: |
76 |
|
|
EventCounter(int = 0); |
77 |
|
|
/** Get the run number for the last read event of this type. */ |
78 |
kusanagi |
1.6 |
int getPscu() const { return Pscu; }; |
79 |
|
|
/** Get the run number for the last read event of this type. */ |
80 |
kusanagi |
2.2 |
int Get(pamela::PacketType const *) const throw (NotExistingCounterException); |
81 |
kusanagi |
1.1 |
/** Get the run number for the next event of this type. */ |
82 |
kusanagi |
2.2 |
int Next(pamela::PacketType const *) const throw (NotExistingCounterException); |
83 |
kusanagi |
1.1 |
int GetRunNumber(void) const { return RunNumber; } |
84 |
kusanagi |
2.2 |
void Increment(pamela::PacketType const *) throw (NotExistingCounterException); |
85 |
kusanagi |
1.1 |
void PrintCounters() const ; |
86 |
kusanagi |
4.2 |
ClassDef(EventCounter, 4) |
87 |
kusanagi |
1.1 |
}; |
88 |
|
|
} |
89 |
|
|
|
90 |
|
|
#endif /* EVENTCOUNTER_H */ |
91 |
kusanagi |
2.3 |
|
92 |
|
|
|