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

Diff of /yoda/event/EventCounter.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.6 by kusanagi, Thu Aug 19 15:24:10 2004 UTC revision 2.4 by kusanagi, Thu Dec 16 17:32:46 2004 UTC
# Line 1  Line 1 
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.5 2004/07/29 16:18:53 kusanagi Exp $   * $Id: EventCounter.cpp,v 2.3 2004/12/09 08:47:42 kusanagi Exp $
4   * $Author: kusanagi $   * $Author: kusanagi $
5   *   *
6   * Implementation of the EventCounter class.   * Implementation of the EventCounter class.
7   */   */
8  #include <log4cpp/Category.hh>  #include <log4cxx/logger.h>
9    #include <sstream>
10    
11  #include "EventCounter.h"  #include "EventCounter.h"
12  #include "PscuHeader.h"  #include "PscuHeader.h"
13    
 static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.EventCounter");    
14    
15    static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.EventCounter"));
16    static std::stringstream oss;
17  using namespace pamela;  using namespace pamela;
18    
19  /**  /**
# Line 32  EventCounter::EventCounter(int run): Line 34  EventCounter::EventCounter(int run):
34    Calib_Tof(0),    Calib_Tof(0),
35    Calib_S4(0),    Calib_S4(0),
36    Calib_CalPed(0),    Calib_CalPed(0),
37    Calib_Ac(0),    Calib1_Ac1(0),
38      Calib1_Ac2(0),
39      Calib2_Ac1(0),
40      Calib2_Ac2(0),
41    Run_Header(0),    Run_Header(0),
42    Run_Trailer(0),    Run_Trailer(0),
43    CalibHeader(0),    CalibHeader(0),
# Line 41  EventCounter::EventCounter(int run): Line 46  EventCounter::EventCounter(int run):
46    InitTrailer(0),    InitTrailer(0),
47    EventTrk(0),    EventTrk(0),
48    TestTrk(0),    TestTrk(0),
49      TestTof(0),
50    Log(0),    Log(0),
51    VarDump(0),    VarDump(0),
52    ArrDump(0),    ArrDump(0),
# Line 48  EventCounter::EventCounter(int run): Line 54  EventCounter::EventCounter(int run):
54    Tmtc(0),    Tmtc(0),
55    Mcmd(0),    Mcmd(0),
56    ForcedFECmd(0),    ForcedFECmd(0),
57    AcInit(0),    Ac1Init(0),
58    CalInit(0),    CalInit(0),
59    TrkInit(0),    TrkInit(0),
60    TofInit(0),    TofInit(0),
61    TrgInit(0),    TrgInit(0),
62      NdInit(0),
63      S4Init(0),
64      Ac2Init(0),
65      CalAlarm(0),
66      AcAlarm(0),
67      TrkAlarm(0),
68      TrgAlarm(0),
69      TofAlarm(0),
70      S4Alarm(0),
71    RunNumber(run) {    RunNumber(run) {
72      CMap.insert(CounterMap::value_type(PacketType::Pscu,            &Pscu));      CMap.insert(CounterMap::value_type(PacketType::Pscu,            &Pscu));
73      CMap.insert(CounterMap::value_type(PacketType::PhysEndRun,      &PhysEndRun));      CMap.insert(CounterMap::value_type(PacketType::PhysEndRun,      &PhysEndRun));
74      CMap.insert(CounterMap::value_type(PacketType::CalibCalPulse2,  &CalibCalPulse1));      CMap.insert(CounterMap::value_type(PacketType::CalibCalPulse1,  &CalibCalPulse1));
75      CMap.insert(CounterMap::value_type(PacketType::CalibCalPulse2,  &CalibCalPulse2));      CMap.insert(CounterMap::value_type(PacketType::CalibCalPulse2,  &CalibCalPulse2));
76      CMap.insert(CounterMap::value_type(PacketType::Physics,         &Physics));      CMap.insert(CounterMap::value_type(PacketType::Physics,         &Physics));
77      CMap.insert(CounterMap::value_type(PacketType::CalibTrkBoth,    &CalibTrkBoth));      CMap.insert(CounterMap::value_type(PacketType::CalibTrkBoth,    &CalibTrkBoth));
# Line 66  EventCounter::EventCounter(int run): Line 81  EventCounter::EventCounter(int run):
81      CMap.insert(CounterMap::value_type(PacketType::CalibTof,        &Calib_Tof));      CMap.insert(CounterMap::value_type(PacketType::CalibTof,        &Calib_Tof));
82      CMap.insert(CounterMap::value_type(PacketType::CalibS4,         &Calib_S4));      CMap.insert(CounterMap::value_type(PacketType::CalibS4,         &Calib_S4));
83      CMap.insert(CounterMap::value_type(PacketType::CalibCalPed,     &Calib_CalPed));      CMap.insert(CounterMap::value_type(PacketType::CalibCalPed,     &Calib_CalPed));
84      CMap.insert(CounterMap::value_type(PacketType::CalibAc,         &Calib_Ac));      CMap.insert(CounterMap::value_type(PacketType::Calib1_Ac1,      &Calib1_Ac1));
85        CMap.insert(CounterMap::value_type(PacketType::Calib1_Ac2,      &Calib1_Ac2));
86        CMap.insert(CounterMap::value_type(PacketType::Calib2_Ac1,      &Calib2_Ac1));
87        CMap.insert(CounterMap::value_type(PacketType::Calib2_Ac2,      &Calib2_Ac2));
88      CMap.insert(CounterMap::value_type(PacketType::RunHeader,       &Run_Header));      CMap.insert(CounterMap::value_type(PacketType::RunHeader,       &Run_Header));
89      CMap.insert(CounterMap::value_type(PacketType::RunTrailer,      &Run_Trailer));      CMap.insert(CounterMap::value_type(PacketType::RunTrailer,      &Run_Trailer));
90      CMap.insert(CounterMap::value_type(PacketType::CalibHeader,     &CalibHeader));      CMap.insert(CounterMap::value_type(PacketType::CalibHeader,     &CalibHeader));
# Line 75  EventCounter::EventCounter(int run): Line 93  EventCounter::EventCounter(int run):
93      CMap.insert(CounterMap::value_type(PacketType::InitTrailer,     &InitTrailer));        CMap.insert(CounterMap::value_type(PacketType::InitTrailer,     &InitTrailer));  
94      CMap.insert(CounterMap::value_type(PacketType::EventTrk,        &EventTrk));        CMap.insert(CounterMap::value_type(PacketType::EventTrk,        &EventTrk));  
95      CMap.insert(CounterMap::value_type(PacketType::TestTrk,         &TestTrk));        CMap.insert(CounterMap::value_type(PacketType::TestTrk,         &TestTrk));  
96        CMap.insert(CounterMap::value_type(PacketType::TestTof,         &TestTof));  
97      CMap.insert(CounterMap::value_type(PacketType::Log,             &Log));      CMap.insert(CounterMap::value_type(PacketType::Log,             &Log));
98      CMap.insert(CounterMap::value_type(PacketType::VarDump,         &VarDump));      CMap.insert(CounterMap::value_type(PacketType::VarDump,         &VarDump));
99      CMap.insert(CounterMap::value_type(PacketType::ArrDump,         &ArrDump));      CMap.insert(CounterMap::value_type(PacketType::ArrDump,         &ArrDump));
# Line 82  EventCounter::EventCounter(int run): Line 101  EventCounter::EventCounter(int run):
101      CMap.insert(CounterMap::value_type(PacketType::Tmtc,            &Tmtc));      CMap.insert(CounterMap::value_type(PacketType::Tmtc,            &Tmtc));
102      CMap.insert(CounterMap::value_type(PacketType::Mcmd,            &Mcmd));      CMap.insert(CounterMap::value_type(PacketType::Mcmd,            &Mcmd));
103      CMap.insert(CounterMap::value_type(PacketType::ForcedFECmd,     &ForcedFECmd));      CMap.insert(CounterMap::value_type(PacketType::ForcedFECmd,     &ForcedFECmd));
104      CMap.insert(CounterMap::value_type(PacketType::AcInit,          &AcInit));      CMap.insert(CounterMap::value_type(PacketType::Ac1Init,         &Ac1Init));
105      CMap.insert(CounterMap::value_type(PacketType::CalInit,         &CalInit));      CMap.insert(CounterMap::value_type(PacketType::CalInit,         &CalInit));
106      CMap.insert(CounterMap::value_type(PacketType::TrkInit,         &TrkInit));      CMap.insert(CounterMap::value_type(PacketType::TrkInit,         &TrkInit));
107      CMap.insert(CounterMap::value_type(PacketType::TofInit,         &TofInit));      CMap.insert(CounterMap::value_type(PacketType::TofInit,         &TofInit));
108      CMap.insert(CounterMap::value_type(PacketType::TrgInit,         &TrgInit));      CMap.insert(CounterMap::value_type(PacketType::NdInit,          &NdInit));
109        CMap.insert(CounterMap::value_type(PacketType::S4Init,          &S4Init));
110        CMap.insert(CounterMap::value_type(PacketType::Ac2Init,         &Ac2Init));
111        CMap.insert(CounterMap::value_type(PacketType::CalAlarm,        &CalAlarm));
112        CMap.insert(CounterMap::value_type(PacketType::AcAlarm,         &AcAlarm));
113        CMap.insert(CounterMap::value_type(PacketType::TrkAlarm,        &TrkAlarm));
114        CMap.insert(CounterMap::value_type(PacketType::TrgAlarm,        &TrgAlarm));
115        CMap.insert(CounterMap::value_type(PacketType::TofAlarm,        &TofAlarm));
116        CMap.insert(CounterMap::value_type(PacketType::S4Alarm,         &S4Alarm));
117  }  }
118    
119  /**  /**
120   * Increment the event counter for a certain packet.   * Increment the event counter for a certain packet.
121   * @param type Event type to be incremented.   * @param type Event type to be incremented.
122   */   */
123  void EventCounter::Increment(PacketType const * type) {  void EventCounter::Increment(PacketType const * type) throw (NotExistingCounterException){
124    CounterMap::iterator p = CMap.find(type);    CounterMap::iterator p = CMap.find(type);
125    if (p != CMap.end()) {    if (p != CMap.end()) {
126      int *counter = p->second;      int *counter = p->second;
127      (*counter)++;      (*counter)++;
128      cat <<  log4cpp::Priority::DEBUG      oss.str("");
129          <<  " Counter." <<  type->GetName() << " = " <<  (*counter)      oss << " Counter." <<  type->GetName() << " = " <<  (*counter);
130          <<  "\n " << log4cpp::CategoryStream::ENDLINE;      logger->debug(oss.str().c_str());
131    } else {    } else {
132      cat <<  log4cpp::Priority::WARN      throw NotExistingCounterException(type->GetName().c_str());
         <<  " No counter for packet type " <<  type->GetName()  
         <<  "\n " << log4cpp::CategoryStream::ENDLINE;  
133    }    }
134  }  }
135    
# Line 116  void EventCounter::Increment(PacketType Line 141  void EventCounter::Increment(PacketType
141   * number of the last read event of that type.   * number of the last read event of that type.
142   * @retval -1 if there was no event of this type.   * @retval -1 if there was no event of this type.
143   */   */
144  int EventCounter::Get(PacketType const * type) const {  int EventCounter::Get(PacketType const * type) const throw (NotExistingCounterException){
145    const CounterMap::const_iterator p = CMap.find(type);    const CounterMap::const_iterator p = CMap.find(type);
146    if (p != CMap.end()) {    if (p != CMap.end()) {
147      const int *counter = p->second;      const int *counter = p->second;
148      return *counter;      return *counter;
149    } else {    } else {
150          cat <<  log4cpp::Priority::WARN      throw NotExistingCounterException(type->GetName().c_str());
         <<  " No counter for packet type " <<  type->GetName()  
         <<  "\n " << log4cpp::CategoryStream::ENDLINE;  
151      return -1;      return -1;
152    }    }
153  }  }
# Line 135  int EventCounter::Get(PacketType const * Line 158  int EventCounter::Get(PacketType const *
158   * @return The next counter of that packet type.   * @return The next counter of that packet type.
159   * @retval -1 if there was no event of this type.   * @retval -1 if there was no event of this type.
160   */   */
161  int EventCounter::Next(PacketType const * type) const {  int EventCounter::Next(PacketType const * type) const throw (NotExistingCounterException){
162    const CounterMap::const_iterator p = CMap.find(type);    const CounterMap::const_iterator p = CMap.find(type);
163    if (p != CMap.end()) {    if (p != CMap.end()) {
164      const int *counter = p->second;      const int *counter = p->second;
165      return *counter + 1;      return *counter + 1;
166    } else {    } else {
167          cat <<  log4cpp::Priority::WARN      throw NotExistingCounterException(type->GetName().c_str());
         <<  " No counter for packet type " <<  type->GetName()  
         <<  "\n " << log4cpp::CategoryStream::ENDLINE;  
168      return -1;      return -1;
169    }    }
170  }  }
171    
172  /**  /**
173   * Get the all the counters   * Get the all the counters
174    * @retval -1 if there was no event of this type.    * @retval 0 if there was no event of this type.
175   */   */
176  void EventCounter::PrintCounters() const {  void EventCounter::PrintCounters() const {
177    for(CounterMap::const_iterator p = CMap.begin(); p != CMap.end(); p++) {    for(CounterMap::const_iterator p = CMap.begin(); p != CMap.end(); p++) {
178    cat <<  log4cpp::Priority::INFO <<  " Counter." <<  (p->first)->GetName()  <<   " = " <<  (*p->second)    oss.str("");
179        <<  "\n " << log4cpp::CategoryStream::ENDLINE;    oss <<  " Counter." <<  (p->first)->GetName()  <<   " \t \t " <<  (*p->second);
180      logger->warn(oss.str().c_str());
181    }    }
182  }  }

Legend:
Removed from v.1.6  
changed lines
  Added in v.2.4

  ViewVC Help
Powered by ViewVC 1.1.23