/[PAMELA software]/yoda/event/EventCounter.cpp
ViewVC logotype

Contents of /yoda/event/EventCounter.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2.2 - (show annotations) (download)
Fri Dec 3 22:04:04 2004 UTC (20 years ago) by kusanagi
Branch: MAIN
Changes since 2.1: +11 -18 lines
Minor changes in several packets structure

1 /** @file
2 * $Source: /home/cvsmanager/yoda/event/EventCounter.cpp,v $
3 * $Id: EventCounter.cpp,v 2.1 2004/09/24 11:57:32 kusanagi Exp $
4 * $Author: kusanagi $
5 *
6 * Implementation of the EventCounter class.
7 */
8 #include <log4cxx/logger.h>
9 #include <sstream>
10
11 #include "EventCounter.h"
12 #include "PscuHeader.h"
13
14
15 static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.EventCounter"));
16 static std::stringstream oss;
17 using namespace pamela;
18
19 /**
20 * Create a new event counter for a certain run.
21 * @param run Run number.
22 */
23 EventCounter::EventCounter(int run):
24 // New Packets.
25 Pscu(0),
26 PhysEndRun(0),
27 CalibCalPulse1(0),
28 CalibCalPulse2(0),
29 Physics(0),
30 CalibTrkBoth(0),
31 Calib_Trk1(0),
32 Calib_Trk2(0),
33 Calib_Trd(0),
34 Calib_Tof(0),
35 Calib_S4(0),
36 Calib_CalPed(0),
37 Calib_Ac(0),
38 Run_Header(0),
39 Run_Trailer(0),
40 CalibHeader(0),
41 CalibTrailer(0),
42 InitHeader(0),
43 InitTrailer(0),
44 EventTrk(0),
45 TestTrk(0),
46 TestTof(0),
47 Log(0),
48 VarDump(0),
49 ArrDump(0),
50 TabDump(0),
51 Tmtc(0),
52 Mcmd(0),
53 ForcedFECmd(0),
54 AcInit(0),
55 CalInit(0),
56 TrkInit(0),
57 TofInit(0),
58 TrgInit(0),
59 NdInit(0),
60 CalAlarm(0),
61 AcAlarm(0),
62 TrkAlarm(0),
63 TrgAlarm(0),
64 TofAlarm(0),
65 RunNumber(run) {
66 CMap.insert(CounterMap::value_type(PacketType::Pscu, &Pscu));
67 CMap.insert(CounterMap::value_type(PacketType::PhysEndRun, &PhysEndRun));
68 CMap.insert(CounterMap::value_type(PacketType::CalibCalPulse1, &CalibCalPulse1));
69 CMap.insert(CounterMap::value_type(PacketType::CalibCalPulse2, &CalibCalPulse2));
70 CMap.insert(CounterMap::value_type(PacketType::Physics, &Physics));
71 CMap.insert(CounterMap::value_type(PacketType::CalibTrkBoth, &CalibTrkBoth));
72 CMap.insert(CounterMap::value_type(PacketType::CalibTrk1, &Calib_Trk1));
73 CMap.insert(CounterMap::value_type(PacketType::CalibTrk2, &Calib_Trk2));
74 CMap.insert(CounterMap::value_type(PacketType::CalibTrd, &Calib_Trd));
75 CMap.insert(CounterMap::value_type(PacketType::CalibTof, &Calib_Tof));
76 CMap.insert(CounterMap::value_type(PacketType::CalibS4, &Calib_S4));
77 CMap.insert(CounterMap::value_type(PacketType::CalibCalPed, &Calib_CalPed));
78 CMap.insert(CounterMap::value_type(PacketType::CalibAc, &Calib_Ac));
79 CMap.insert(CounterMap::value_type(PacketType::RunHeader, &Run_Header));
80 CMap.insert(CounterMap::value_type(PacketType::RunTrailer, &Run_Trailer));
81 CMap.insert(CounterMap::value_type(PacketType::CalibHeader, &CalibHeader));
82 CMap.insert(CounterMap::value_type(PacketType::CalibTrailer, &CalibTrailer));
83 CMap.insert(CounterMap::value_type(PacketType::InitHeader, &InitHeader));
84 CMap.insert(CounterMap::value_type(PacketType::InitTrailer, &InitTrailer));
85 CMap.insert(CounterMap::value_type(PacketType::EventTrk, &EventTrk));
86 CMap.insert(CounterMap::value_type(PacketType::TestTrk, &TestTrk));
87 CMap.insert(CounterMap::value_type(PacketType::TestTof, &TestTof));
88 CMap.insert(CounterMap::value_type(PacketType::Log, &Log));
89 CMap.insert(CounterMap::value_type(PacketType::VarDump, &VarDump));
90 CMap.insert(CounterMap::value_type(PacketType::ArrDump, &ArrDump));
91 CMap.insert(CounterMap::value_type(PacketType::TabDump, &TabDump));
92 CMap.insert(CounterMap::value_type(PacketType::Tmtc, &Tmtc));
93 CMap.insert(CounterMap::value_type(PacketType::Mcmd, &Mcmd));
94 CMap.insert(CounterMap::value_type(PacketType::ForcedFECmd, &ForcedFECmd));
95 CMap.insert(CounterMap::value_type(PacketType::AcInit, &AcInit));
96 CMap.insert(CounterMap::value_type(PacketType::CalInit, &CalInit));
97 CMap.insert(CounterMap::value_type(PacketType::TrkInit, &TrkInit));
98 CMap.insert(CounterMap::value_type(PacketType::TofInit, &TofInit));
99 CMap.insert(CounterMap::value_type(PacketType::TrgInit, &TrgInit));
100 CMap.insert(CounterMap::value_type(PacketType::TrgInit, &NdInit));
101 CMap.insert(CounterMap::value_type(PacketType::CalAlarm, &CalAlarm));
102 CMap.insert(CounterMap::value_type(PacketType::AcAlarm, &AcAlarm));
103 CMap.insert(CounterMap::value_type(PacketType::TrkAlarm, &TrkAlarm));
104 CMap.insert(CounterMap::value_type(PacketType::TrgAlarm, &TrgAlarm));
105 CMap.insert(CounterMap::value_type(PacketType::TofAlarm, &TofAlarm));
106 }
107
108 /**
109 * Increment the event counter for a certain packet.
110 * @param type Event type to be incremented.
111 */
112 void EventCounter::Increment(PacketType const * type) throw (NotExistingCounterException){
113 CounterMap::iterator p = CMap.find(type);
114 if (p != CMap.end()) {
115 int *counter = p->second;
116 (*counter)++;
117 oss.str("");
118 oss << " Counter." << type->GetName() << " = " << (*counter);
119 logger->debug(oss.str().c_str());
120 } else {
121 throw NotExistingCounterException(type->GetName().c_str());
122 }
123 }
124
125 /**
126 * Get the counter corresponding to a certain packet type.
127 * @param type Event type to be incremented.
128 * @return The counter of that packet type. For the current event type,
129 * this is the actual event number. For all other types, this is the event
130 * number of the last read event of that type.
131 * @retval -1 if there was no event of this type.
132 */
133 int EventCounter::Get(PacketType const * type) const throw (NotExistingCounterException){
134 const CounterMap::const_iterator p = CMap.find(type);
135 if (p != CMap.end()) {
136 const int *counter = p->second;
137 return *counter;
138 } else {
139 throw NotExistingCounterException(type->GetName().c_str());
140 return -1;
141 }
142 }
143
144 /**
145 * Get the counter of the next event corresponding to a certain packet type.
146 * @param type Event type to be incremented.
147 * @return The next counter of that packet type.
148 * @retval -1 if there was no event of this type.
149 */
150 int EventCounter::Next(PacketType const * type) const throw (NotExistingCounterException){
151 const CounterMap::const_iterator p = CMap.find(type);
152 if (p != CMap.end()) {
153 const int *counter = p->second;
154 return *counter + 1;
155 } else {
156 throw NotExistingCounterException(type->GetName().c_str());
157 return -1;
158 }
159 }
160
161 /**
162 * Get the all the counters
163 * @retval 0 if there was no event of this type.
164 */
165 void EventCounter::PrintCounters() const {
166 for(CounterMap::const_iterator p = CMap.begin(); p != CMap.end(); p++) {
167 oss.str("");
168 oss << " Counter." << (p->first)->GetName() << " \t \t " << (*p->second);
169 logger->warn(oss.str().c_str());
170 }
171 }

  ViewVC Help
Powered by ViewVC 1.1.23