| 1 |
/** @file |
/** @file |
| 2 |
* $Source: /home/cvsmanager/yoda/event/EventCounter.cpp,v $ |
* $Source: /home/cvsmanager/yoda/event/EventCounter.cpp,v $ |
| 3 |
* $Id: EventCounter.cpp,v 1.3 2004/07/06 14:07:24 kusanagi Exp $ |
* $Id: EventCounter.cpp,v 1.5 2004/07/29 16:18:53 kusanagi Exp $ |
| 4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
| 5 |
* |
* |
| 6 |
* Implementation of the EventCounter class. |
* Implementation of the EventCounter class. |
| 10 |
#include "EventCounter.h" |
#include "EventCounter.h" |
| 11 |
#include "PscuHeader.h" |
#include "PscuHeader.h" |
| 12 |
|
|
| 13 |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.raw.EventCounter"); |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.EventCounter"); |
| 14 |
|
|
| 15 |
using namespace pamela; |
using namespace pamela; |
| 16 |
|
|
| 21 |
EventCounter::EventCounter(int run): |
EventCounter::EventCounter(int run): |
| 22 |
// New Packets. |
// New Packets. |
| 23 |
Pscu(0), |
Pscu(0), |
| 24 |
|
PhysEndRun(0), |
| 25 |
|
CalibCalPulse1(0), |
| 26 |
|
CalibCalPulse2(0), |
| 27 |
Physics(0), |
Physics(0), |
| 28 |
Forced_Pkt(0), |
CalibTrkBoth(0), |
| 29 |
Calib_Trk1(0), |
Calib_Trk1(0), |
| 30 |
Calib_Trk2(0), |
Calib_Trk2(0), |
|
Calib_Cal(0), |
|
|
Calib_CalPed(0), |
|
|
Calib_Ac(0), |
|
| 31 |
Calib_Trd(0), |
Calib_Trd(0), |
| 32 |
Calib_Tof(0), |
Calib_Tof(0), |
| 33 |
Calib_S4(0), |
Calib_S4(0), |
| 34 |
|
Calib_CalPed(0), |
| 35 |
|
Calib_Ac(0), |
| 36 |
Run_Header(0), |
Run_Header(0), |
| 37 |
Run_Trailer(0), |
Run_Trailer(0), |
| 38 |
Alarm(0), |
CalibHeader(0), |
| 39 |
Khb(0), |
CalibTrailer(0), |
| 40 |
|
InitHeader(0), |
| 41 |
|
InitTrailer(0), |
| 42 |
|
EventTrk(0), |
| 43 |
|
TestTrk(0), |
| 44 |
Log(0), |
Log(0), |
| 45 |
VarDump(0), |
VarDump(0), |
| 46 |
ArrDump(0), |
ArrDump(0), |
| 47 |
TabDump(0), |
TabDump(0), |
| 48 |
Tmtc(0), |
Tmtc(0), |
| 49 |
Mcmd(0), |
Mcmd(0), |
| 50 |
HA_Header_E5(0), |
ForcedFECmd(0), |
| 51 |
|
AcInit(0), |
| 52 |
|
CalInit(0), |
| 53 |
|
TrkInit(0), |
| 54 |
|
TofInit(0), |
| 55 |
|
TrgInit(0), |
| 56 |
RunNumber(run) { |
RunNumber(run) { |
| 57 |
CMap.insert(CounterMap::value_type(PacketType::Pscu, &Pscu)); |
CMap.insert(CounterMap::value_type(PacketType::Pscu, &Pscu)); |
| 58 |
CMap.insert(CounterMap::value_type(PacketType::Physics, &Physics)); |
CMap.insert(CounterMap::value_type(PacketType::PhysEndRun, &PhysEndRun)); |
| 59 |
CMap.insert(CounterMap::value_type(PacketType::ForcedPkt, &Forced_Pkt)); |
CMap.insert(CounterMap::value_type(PacketType::CalibCalPulse2, &CalibCalPulse1)); |
| 60 |
CMap.insert(CounterMap::value_type(PacketType::CalibTrk1, &Calib_Trk1)); |
CMap.insert(CounterMap::value_type(PacketType::CalibCalPulse2, &CalibCalPulse2)); |
| 61 |
CMap.insert(CounterMap::value_type(PacketType::CalibTrk2, &Calib_Trk2)); |
CMap.insert(CounterMap::value_type(PacketType::Physics, &Physics)); |
| 62 |
CMap.insert(CounterMap::value_type(PacketType::CalibCal, &Calib_Cal)); |
CMap.insert(CounterMap::value_type(PacketType::CalibTrkBoth, &CalibTrkBoth)); |
| 63 |
CMap.insert(CounterMap::value_type(PacketType::CalibCalPed, &Calib_CalPed)); |
CMap.insert(CounterMap::value_type(PacketType::CalibTrk1, &Calib_Trk1)); |
| 64 |
CMap.insert(CounterMap::value_type(PacketType::CalibAc, &Calib_Ac)); |
CMap.insert(CounterMap::value_type(PacketType::CalibTrk2, &Calib_Trk2)); |
| 65 |
CMap.insert(CounterMap::value_type(PacketType::CalibTrd, &Calib_Trd)); |
CMap.insert(CounterMap::value_type(PacketType::CalibTrd, &Calib_Trd)); |
| 66 |
CMap.insert(CounterMap::value_type(PacketType::CalibTof, &Calib_Tof)); |
CMap.insert(CounterMap::value_type(PacketType::CalibTof, &Calib_Tof)); |
| 67 |
CMap.insert(CounterMap::value_type(PacketType::CalibS4, &Calib_S4)); |
CMap.insert(CounterMap::value_type(PacketType::CalibS4, &Calib_S4)); |
| 68 |
CMap.insert(CounterMap::value_type(PacketType::RunHeader, &Run_Header)); |
CMap.insert(CounterMap::value_type(PacketType::CalibCalPed, &Calib_CalPed)); |
| 69 |
CMap.insert(CounterMap::value_type(PacketType::RunTrailer, &Run_Trailer)); |
CMap.insert(CounterMap::value_type(PacketType::CalibAc, &Calib_Ac)); |
| 70 |
CMap.insert(CounterMap::value_type(PacketType::Alarm, &Alarm)); |
CMap.insert(CounterMap::value_type(PacketType::RunHeader, &Run_Header)); |
| 71 |
CMap.insert(CounterMap::value_type(PacketType::Khb, &Khb)); |
CMap.insert(CounterMap::value_type(PacketType::RunTrailer, &Run_Trailer)); |
| 72 |
CMap.insert(CounterMap::value_type(PacketType::Log, &Log)); |
CMap.insert(CounterMap::value_type(PacketType::CalibHeader, &CalibHeader)); |
| 73 |
CMap.insert(CounterMap::value_type(PacketType::VarDump, &VarDump)); |
CMap.insert(CounterMap::value_type(PacketType::CalibTrailer, &CalibTrailer)); |
| 74 |
CMap.insert(CounterMap::value_type(PacketType::ArrDump, &ArrDump)); |
CMap.insert(CounterMap::value_type(PacketType::InitHeader, &InitHeader)); |
| 75 |
CMap.insert(CounterMap::value_type(PacketType::TabDump, &TabDump)); |
CMap.insert(CounterMap::value_type(PacketType::InitTrailer, &InitTrailer)); |
| 76 |
CMap.insert(CounterMap::value_type(PacketType::Tmtc, &Tmtc)); |
CMap.insert(CounterMap::value_type(PacketType::EventTrk, &EventTrk)); |
| 77 |
CMap.insert(CounterMap::value_type(PacketType::Mcmd, &Mcmd)); |
CMap.insert(CounterMap::value_type(PacketType::TestTrk, &TestTrk)); |
| 78 |
CMap.insert(CounterMap::value_type(PacketType::HA_Header_E5, &HA_Header_E5)); |
CMap.insert(CounterMap::value_type(PacketType::Log, &Log)); |
| 79 |
|
CMap.insert(CounterMap::value_type(PacketType::VarDump, &VarDump)); |
| 80 |
|
CMap.insert(CounterMap::value_type(PacketType::ArrDump, &ArrDump)); |
| 81 |
|
CMap.insert(CounterMap::value_type(PacketType::TabDump, &TabDump)); |
| 82 |
|
CMap.insert(CounterMap::value_type(PacketType::Tmtc, &Tmtc)); |
| 83 |
|
CMap.insert(CounterMap::value_type(PacketType::Mcmd, &Mcmd)); |
| 84 |
|
CMap.insert(CounterMap::value_type(PacketType::ForcedFECmd, &ForcedFECmd)); |
| 85 |
|
CMap.insert(CounterMap::value_type(PacketType::AcInit, &AcInit)); |
| 86 |
|
CMap.insert(CounterMap::value_type(PacketType::CalInit, &CalInit)); |
| 87 |
|
CMap.insert(CounterMap::value_type(PacketType::TrkInit, &TrkInit)); |
| 88 |
|
CMap.insert(CounterMap::value_type(PacketType::TofInit, &TofInit)); |
| 89 |
|
CMap.insert(CounterMap::value_type(PacketType::TrgInit, &TrgInit)); |
| 90 |
} |
} |
| 91 |
|
|
| 92 |
/** |
/** |
| 98 |
if (p != CMap.end()) { |
if (p != CMap.end()) { |
| 99 |
int *counter = p->second; |
int *counter = p->second; |
| 100 |
(*counter)++; |
(*counter)++; |
| 101 |
cat << log4cpp::Priority::INFO |
cat << log4cpp::Priority::DEBUG |
| 102 |
<< " Counter." << type->GetName() << " = " << (*counter) |
<< " Counter." << type->GetName() << " = " << (*counter) |
| 103 |
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
| 104 |
} else { |
} else { |
| 105 |
cat << log4cpp::Priority::INFO |
cat << log4cpp::Priority::WARN |
| 106 |
<< " No counter for packet type " << type->GetName() |
<< " No counter for packet type " << type->GetName() |
| 107 |
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
| 108 |
} |
} |
| 122 |
const int *counter = p->second; |
const int *counter = p->second; |
| 123 |
return *counter; |
return *counter; |
| 124 |
} else { |
} else { |
| 125 |
cat << log4cpp::Priority::INFO |
cat << log4cpp::Priority::WARN |
| 126 |
<< " No counter for packet type " << type->GetName() |
<< " No counter for packet type " << type->GetName() |
| 127 |
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
| 128 |
return -1; |
return -1; |