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

Diff of /yoda/event/EventCounter.h

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

revision 1.5 by kusanagi, Thu Jul 29 16:18:54 2004 UTC revision 2.2 by kusanagi, Fri Dec 3 22:04:04 2004 UTC
# Line 1  Line 1 
1  /** @file  /** @file
2   * $Source: /home/cvsmanager/yoda/event/EventCounter.h,v $   * $Source: /home/cvsmanager/yoda/event/EventCounter.h,v $
3   * $Id: EventCounter.h,v 1.4 2004/07/08 12:31:22 kusanagi Exp $   * $Id: EventCounter.h,v 2.1 2004/09/24 11:57:32 kusanagi Exp $
4   * $Author: kusanagi $   * $Author: kusanagi $
5   *   *
6   * Header file for the EventCounter class.   * Header file for the EventCounter class.
# Line 9  Line 9 
9  #define EVENTCOUNTER_H  #define EVENTCOUNTER_H
10    
11  #include <map>  #include <map>
12  //#include <root/TObject.h>  #include "Exception.h"
 #include <TObject.h> //Substituted by Maurizio 05 Feb 2004  
   
13  #include "PscuHeader.h"  #include "PscuHeader.h"
14    
15  namespace pamela {  namespace pamela {
# Line 45  namespace pamela { Line 43  namespace pamela {
43      int InitTrailer;      int InitTrailer;
44      int EventTrk;      int EventTrk;
45      int TestTrk;      int TestTrk;
46        int TestTof;
47      int Log;      int Log;
48      int VarDump;      int VarDump;
49      int ArrDump;      int ArrDump;
# Line 57  namespace pamela { Line 56  namespace pamela {
56      int TrkInit;      int TrkInit;
57      int TofInit;      int TofInit;
58      int TrgInit;      int TrgInit;
59        int NdInit;
60        int CalAlarm;
61        int AcAlarm;
62        int TrkAlarm;
63        int TrgAlarm;
64        int TofAlarm;
65    
66      typedef std::map<const pamela::PacketType *, int *> CounterMap;      typedef std::map<const pamela::PacketType *, int *> CounterMap;
67      CounterMap CMap; //!      CounterMap CMap; //!
68        
69    public:    public:
70      EventCounter(int = 0);      EventCounter(int = 0);
71      /** Get the run number for the last read event of this type. */      /** Get the run number for the last read event of this type. */
72      int Get(pamela::PacketType const *) const;      int getPscu() const { return Pscu; };
73        /** Get the run number for the last read event of this type. */
74        int Get(pamela::PacketType const *) const throw (NotExistingCounterException);
75      /** Get the run number for the next event of this type. */      /** Get the run number for the next event of this type. */
76      int Next(pamela::PacketType const *) const;      int Next(pamela::PacketType const *) const throw (NotExistingCounterException);
77      int GetRunNumber(void) const { return RunNumber; }      int GetRunNumber(void) const { return RunNumber; }
78      void Increment(pamela::PacketType const *);      void Increment(pamela::PacketType const *) throw (NotExistingCounterException);
79      void PrintCounters() const ;      void PrintCounters() const ;
80      ClassDef(EventCounter, 1)      ClassDef(EventCounter, 1)
81    };    };

Legend:
Removed from v.1.5  
changed lines
  Added in v.2.2

  ViewVC Help
Powered by ViewVC 1.1.23