/[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.3 by kusanagi, Thu Dec 9 08:47:42 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.2 2004/12/03 22:04:04 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 41  EventCounter::EventCounter(int run): Line 43  EventCounter::EventCounter(int run):
43    InitTrailer(0),    InitTrailer(0),
44    EventTrk(0),    EventTrk(0),
45    TestTrk(0),    TestTrk(0),
46      TestTof(0),
47    Log(0),    Log(0),
48    VarDump(0),    VarDump(0),
49    ArrDump(0),    ArrDump(0),
# Line 53  EventCounter::EventCounter(int run): Line 56  EventCounter::EventCounter(int run):
56    TrkInit(0),    TrkInit(0),
57    TofInit(0),    TofInit(0),
58    TrgInit(0),    TrgInit(0),
59      NdInit(0),
60      S4Init(0),
61      CalAlarm(0),
62      AcAlarm(0),
63      TrkAlarm(0),
64      TrgAlarm(0),
65      TofAlarm(0),
66      S4Alarm(0),
67    RunNumber(run) {    RunNumber(run) {
68      CMap.insert(CounterMap::value_type(PacketType::Pscu,            &Pscu));      CMap.insert(CounterMap::value_type(PacketType::Pscu,            &Pscu));
69      CMap.insert(CounterMap::value_type(PacketType::PhysEndRun,      &PhysEndRun));      CMap.insert(CounterMap::value_type(PacketType::PhysEndRun,      &PhysEndRun));
70      CMap.insert(CounterMap::value_type(PacketType::CalibCalPulse2,  &CalibCalPulse1));      CMap.insert(CounterMap::value_type(PacketType::CalibCalPulse1,  &CalibCalPulse1));
71      CMap.insert(CounterMap::value_type(PacketType::CalibCalPulse2,  &CalibCalPulse2));      CMap.insert(CounterMap::value_type(PacketType::CalibCalPulse2,  &CalibCalPulse2));
72      CMap.insert(CounterMap::value_type(PacketType::Physics,         &Physics));      CMap.insert(CounterMap::value_type(PacketType::Physics,         &Physics));
73      CMap.insert(CounterMap::value_type(PacketType::CalibTrkBoth,    &CalibTrkBoth));      CMap.insert(CounterMap::value_type(PacketType::CalibTrkBoth,    &CalibTrkBoth));
# Line 75  EventCounter::EventCounter(int run): Line 86  EventCounter::EventCounter(int run):
86      CMap.insert(CounterMap::value_type(PacketType::InitTrailer,     &InitTrailer));        CMap.insert(CounterMap::value_type(PacketType::InitTrailer,     &InitTrailer));  
87      CMap.insert(CounterMap::value_type(PacketType::EventTrk,        &EventTrk));        CMap.insert(CounterMap::value_type(PacketType::EventTrk,        &EventTrk));  
88      CMap.insert(CounterMap::value_type(PacketType::TestTrk,         &TestTrk));        CMap.insert(CounterMap::value_type(PacketType::TestTrk,         &TestTrk));  
89        CMap.insert(CounterMap::value_type(PacketType::TestTof,         &TestTof));  
90      CMap.insert(CounterMap::value_type(PacketType::Log,             &Log));      CMap.insert(CounterMap::value_type(PacketType::Log,             &Log));
91      CMap.insert(CounterMap::value_type(PacketType::VarDump,         &VarDump));      CMap.insert(CounterMap::value_type(PacketType::VarDump,         &VarDump));
92      CMap.insert(CounterMap::value_type(PacketType::ArrDump,         &ArrDump));      CMap.insert(CounterMap::value_type(PacketType::ArrDump,         &ArrDump));
# Line 86  EventCounter::EventCounter(int run): Line 98  EventCounter::EventCounter(int run):
98      CMap.insert(CounterMap::value_type(PacketType::CalInit,         &CalInit));      CMap.insert(CounterMap::value_type(PacketType::CalInit,         &CalInit));
99      CMap.insert(CounterMap::value_type(PacketType::TrkInit,         &TrkInit));      CMap.insert(CounterMap::value_type(PacketType::TrkInit,         &TrkInit));
100      CMap.insert(CounterMap::value_type(PacketType::TofInit,         &TofInit));      CMap.insert(CounterMap::value_type(PacketType::TofInit,         &TofInit));
101      CMap.insert(CounterMap::value_type(PacketType::TrgInit,         &TrgInit));      CMap.insert(CounterMap::value_type(PacketType::NdInit,          &NdInit));
102        CMap.insert(CounterMap::value_type(PacketType::S4Init,          &S4Init));
103        CMap.insert(CounterMap::value_type(PacketType::CalAlarm,        &CalAlarm));
104        CMap.insert(CounterMap::value_type(PacketType::AcAlarm,         &AcAlarm));
105        CMap.insert(CounterMap::value_type(PacketType::TrkAlarm,        &TrkAlarm));
106        CMap.insert(CounterMap::value_type(PacketType::TrgAlarm,        &TrgAlarm));
107        CMap.insert(CounterMap::value_type(PacketType::TofAlarm,        &TofAlarm));
108        CMap.insert(CounterMap::value_type(PacketType::S4Alarm,         &S4Alarm));
109  }  }
110    
111  /**  /**
112   * Increment the event counter for a certain packet.   * Increment the event counter for a certain packet.
113   * @param type Event type to be incremented.   * @param type Event type to be incremented.
114   */   */
115  void EventCounter::Increment(PacketType const * type) {  void EventCounter::Increment(PacketType const * type) throw (NotExistingCounterException){
116    CounterMap::iterator p = CMap.find(type);    CounterMap::iterator p = CMap.find(type);
117    if (p != CMap.end()) {    if (p != CMap.end()) {
118      int *counter = p->second;      int *counter = p->second;
119      (*counter)++;      (*counter)++;
120      cat <<  log4cpp::Priority::DEBUG      oss.str("");
121          <<  " Counter." <<  type->GetName() << " = " <<  (*counter)      oss << " Counter." <<  type->GetName() << " = " <<  (*counter);
122          <<  "\n " << log4cpp::CategoryStream::ENDLINE;      logger->debug(oss.str().c_str());
123    } else {    } else {
124      cat <<  log4cpp::Priority::WARN      throw NotExistingCounterException(type->GetName().c_str());
         <<  " No counter for packet type " <<  type->GetName()  
         <<  "\n " << log4cpp::CategoryStream::ENDLINE;  
125    }    }
126  }  }
127    
# Line 116  void EventCounter::Increment(PacketType Line 133  void EventCounter::Increment(PacketType
133   * number of the last read event of that type.   * number of the last read event of that type.
134   * @retval -1 if there was no event of this type.   * @retval -1 if there was no event of this type.
135   */   */
136  int EventCounter::Get(PacketType const * type) const {  int EventCounter::Get(PacketType const * type) const throw (NotExistingCounterException){
137    const CounterMap::const_iterator p = CMap.find(type);    const CounterMap::const_iterator p = CMap.find(type);
138    if (p != CMap.end()) {    if (p != CMap.end()) {
139      const int *counter = p->second;      const int *counter = p->second;
140      return *counter;      return *counter;
141    } else {    } else {
142          cat <<  log4cpp::Priority::WARN      throw NotExistingCounterException(type->GetName().c_str());
         <<  " No counter for packet type " <<  type->GetName()  
         <<  "\n " << log4cpp::CategoryStream::ENDLINE;  
143      return -1;      return -1;
144    }    }
145  }  }
# Line 135  int EventCounter::Get(PacketType const * Line 150  int EventCounter::Get(PacketType const *
150   * @return The next counter of that packet type.   * @return The next counter of that packet type.
151   * @retval -1 if there was no event of this type.   * @retval -1 if there was no event of this type.
152   */   */
153  int EventCounter::Next(PacketType const * type) const {  int EventCounter::Next(PacketType const * type) const throw (NotExistingCounterException){
154    const CounterMap::const_iterator p = CMap.find(type);    const CounterMap::const_iterator p = CMap.find(type);
155    if (p != CMap.end()) {    if (p != CMap.end()) {
156      const int *counter = p->second;      const int *counter = p->second;
157      return *counter + 1;      return *counter + 1;
158    } else {    } else {
159          cat <<  log4cpp::Priority::WARN      throw NotExistingCounterException(type->GetName().c_str());
         <<  " No counter for packet type " <<  type->GetName()  
         <<  "\n " << log4cpp::CategoryStream::ENDLINE;  
160      return -1;      return -1;
161    }    }
162  }  }
163    
164  /**  /**
165   * Get the all the counters   * Get the all the counters
166    * @retval -1 if there was no event of this type.    * @retval 0 if there was no event of this type.
167   */   */
168  void EventCounter::PrintCounters() const {  void EventCounter::PrintCounters() const {
169    for(CounterMap::const_iterator p = CMap.begin(); p != CMap.end(); p++) {    for(CounterMap::const_iterator p = CMap.begin(); p != CMap.end(); p++) {
170    cat <<  log4cpp::Priority::INFO <<  " Counter." <<  (p->first)->GetName()  <<   " = " <<  (*p->second)    oss.str("");
171        <<  "\n " << log4cpp::CategoryStream::ENDLINE;    oss <<  " Counter." <<  (p->first)->GetName()  <<   " \t \t " <<  (*p->second);
172      logger->warn(oss.str().c_str());
173    }    }
174  }  }

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

  ViewVC Help
Powered by ViewVC 1.1.23