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

Contents of /yoda/event/EventCounter.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6.1 - (show annotations) (download)
Wed Feb 15 15:47:14 2006 UTC (18 years, 9 months ago) by kusanagi
Branch: MAIN
CVS Tags: YODA6_2/01, YODA6_2/00, YODA6_1/00
Changes since 6.0: +2 -1 lines
Update. Because of misunderstanding the EventTrk packet had been removed from the unpacking. Now it is added again to the Yoda package.

1 /** @file
2 * $Source: /home/cvsmanager/yoda/event/EventCounter.cpp,v $
3 * $Id: EventCounter.cpp,v 6.0 2006/02/07 17:11:07 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 CalibTrk1(0),
31 CalibTrk2(0),
32 CalibTof(0),
33 CalibS4(0),
34 CalibCalPed(0),
35 Calib1_Ac1(0),
36 Calib1_Ac2(0),
37 Calib2_Ac1(0),
38 Calib2_Ac2(0),
39 RunHeader(0),
40 RunTrailer(0),
41 CalibHeader(0),
42 CalibTrailer(0),
43 InitHeader(0),
44 InitTrailer(0),
45 EventTrk(0),
46 Log(0),
47 VarDump(0),
48 ArrDump(0),
49 TabDump(0),
50 Tmtc(0),
51 Mcmd(0),
52 ForcedFECmd(0),
53 Ac1Init(0),
54 CalInit(0),
55 TrkInit(0),
56 TofInit(0),
57 TrgInit(0),
58 NdInit(0),
59 S4Init(0),
60 Ac2Init(0),
61 CalAlarm(0),
62 AcAlarm(0),
63 TrkAlarm(0),
64 TrgAlarm(0),
65 TofAlarm(0),
66 S4Alarm(0),
67 TsbT(0),
68 TsbB(0),
69 RunNumber(run) {
70 CMap.insert(CounterMap::value_type(PacketType::Pscu, &Pscu));
71 CMap.insert(CounterMap::value_type(PacketType::PhysEndRun, &PhysEndRun));
72 CMap.insert(CounterMap::value_type(PacketType::CalibCalPulse1, &CalibCalPulse1));
73 CMap.insert(CounterMap::value_type(PacketType::CalibCalPulse2, &CalibCalPulse2));
74 CMap.insert(CounterMap::value_type(PacketType::Physics, &Physics));
75 CMap.insert(CounterMap::value_type(PacketType::CalibTrk1, &CalibTrk1));
76 CMap.insert(CounterMap::value_type(PacketType::CalibTrk2, &CalibTrk2));
77 CMap.insert(CounterMap::value_type(PacketType::CalibTof, &CalibTof));
78 CMap.insert(CounterMap::value_type(PacketType::CalibS4, &CalibS4));
79 CMap.insert(CounterMap::value_type(PacketType::CalibCalPed, &CalibCalPed));
80 CMap.insert(CounterMap::value_type(PacketType::Calib1_Ac1, &Calib1_Ac1));
81 CMap.insert(CounterMap::value_type(PacketType::Calib1_Ac2, &Calib1_Ac2));
82 CMap.insert(CounterMap::value_type(PacketType::Calib2_Ac1, &Calib2_Ac1));
83 CMap.insert(CounterMap::value_type(PacketType::Calib2_Ac2, &Calib2_Ac2));
84 CMap.insert(CounterMap::value_type(PacketType::RunHeader, &RunHeader));
85 CMap.insert(CounterMap::value_type(PacketType::RunTrailer, &RunTrailer));
86 CMap.insert(CounterMap::value_type(PacketType::CalibHeader, &CalibHeader));
87 CMap.insert(CounterMap::value_type(PacketType::CalibTrailer, &CalibTrailer));
88 CMap.insert(CounterMap::value_type(PacketType::InitHeader, &InitHeader));
89 CMap.insert(CounterMap::value_type(PacketType::InitTrailer, &InitTrailer));
90 CMap.insert(CounterMap::value_type(PacketType::Log, &Log));
91 CMap.insert(CounterMap::value_type(PacketType::VarDump, &VarDump));
92 CMap.insert(CounterMap::value_type(PacketType::ArrDump, &ArrDump));
93 CMap.insert(CounterMap::value_type(PacketType::TabDump, &TabDump));
94 CMap.insert(CounterMap::value_type(PacketType::Tmtc, &Tmtc));
95 CMap.insert(CounterMap::value_type(PacketType::Mcmd, &Mcmd));
96 CMap.insert(CounterMap::value_type(PacketType::ForcedFECmd, &ForcedFECmd));
97 CMap.insert(CounterMap::value_type(PacketType::Ac1Init, &Ac1Init));
98 CMap.insert(CounterMap::value_type(PacketType::CalInit, &CalInit));
99 CMap.insert(CounterMap::value_type(PacketType::TrkInit, &TrkInit));
100 CMap.insert(CounterMap::value_type(PacketType::TofInit, &TofInit));
101 CMap.insert(CounterMap::value_type(PacketType::NdInit, &NdInit));
102 CMap.insert(CounterMap::value_type(PacketType::S4Init, &S4Init));
103 CMap.insert(CounterMap::value_type(PacketType::Ac2Init, &Ac2Init));
104 CMap.insert(CounterMap::value_type(PacketType::CalAlarm, &CalAlarm));
105 CMap.insert(CounterMap::value_type(PacketType::AcAlarm, &AcAlarm));
106 CMap.insert(CounterMap::value_type(PacketType::TrkAlarm, &TrkAlarm));
107 CMap.insert(CounterMap::value_type(PacketType::TrgAlarm, &TrgAlarm));
108 CMap.insert(CounterMap::value_type(PacketType::TofAlarm, &TofAlarm));
109 CMap.insert(CounterMap::value_type(PacketType::S4Alarm, &S4Alarm));
110 CMap.insert(CounterMap::value_type(PacketType::TsbT, &TsbT));
111 CMap.insert(CounterMap::value_type(PacketType::TsbB, &TsbB));
112 }
113
114 /**
115 * Increment the event counter for a certain packet.
116 * @param type Event type to be incremented.
117 */
118 void EventCounter::Increment(PacketType const * type) throw (NotExistingCounterException){
119 CounterMap::iterator p = CMap.find(type);
120 if (p != CMap.end()) {
121 int *counter = p->second;
122 (*counter)++;
123 oss.str("");
124 oss << " Counter." << type->GetName() << " = " << (*counter);
125 logger->info(oss.str().c_str());
126 } else {
127 oss.str("");
128 oss << "\n No counter of type " << type->GetName().c_str();
129 throw NotExistingCounterException(oss.str().c_str());
130 }
131 }
132
133 /**
134 * Get the counter corresponding to a certain packet type.
135 * @param type Event type to be incremented.
136 * @return The counter of that packet type. For the current event type,
137 * this is the actual event number. For all other types, this is the event
138 * number of the last read event of that type.
139 * @retval -1 if there was no event of this type.
140 */
141 int EventCounter::Get(PacketType const * type) const throw (NotExistingCounterException){
142 const CounterMap::const_iterator p = CMap.find(type);
143 if (p != CMap.end()) {
144 const int *counter = p->second;
145 return *counter;
146 } else {
147 throw NotExistingCounterException(type->GetName().c_str());
148 return -1;
149 }
150 }
151
152 /**
153 * Get the counter of the next event corresponding to a certain packet type.
154 * @param type Event type to be incremented.
155 * @return The next counter of that packet type.
156 * @retval -1 if there was no event of this type.
157 */
158 int EventCounter::Next(PacketType const * type) const throw (NotExistingCounterException){
159 const CounterMap::const_iterator p = CMap.find(type);
160 if (p != CMap.end()) {
161 const int *counter = p->second;
162 return *counter + 1;
163 } else {
164 throw NotExistingCounterException(type->GetName().c_str());
165 return -1;
166 }
167 }
168
169 /**
170 * Get the all the counters
171 * @retval 0 if there was no event of this type.
172 */
173 void EventCounter::PrintCounters() const {
174 for(CounterMap::const_iterator p = CMap.begin(); p != CMap.end(); p++) {
175 oss.str("");
176 oss << " Counter." << (p->first)->GetName() << " \t \t " << (*p->second);
177 logger->info(oss.str().c_str());
178 }
179 }
180

  ViewVC Help
Powered by ViewVC 1.1.23