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