/[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 2.0 by kusanagi, Tue Sep 21 20:49:57 2004 UTC revision 6.2 by kusanagi, Tue May 30 19:10:01 2006 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.6 2004/09/21 20:23:37 kusanagi Exp $   * $Id: EventCounter.h,v 6.1 2006/02/15 15:47:14 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 "Exception.h"
13  #include <TObject.h> //Substituted by Maurizio 05 Feb 2004  #include "PacketType.h"
14    #include <TObject.h>
 #include "PscuHeader.h"  
15    
16  namespace pamela {  namespace pamela {
17    /**    /**
# Line 29  namespace pamela { Line 28  namespace pamela {
28      int CalibCalPulse2;      int CalibCalPulse2;
29      int Physics;      int Physics;
30      int CalibTrkBoth;      int CalibTrkBoth;
31      int Calib_Trk1;      int CalibTrk1;
32      int Calib_Trk2;      int CalibTrk2;
33      int Calib_Cal;      int CalibCal;
34      int Calib_Trd;      int CalibTof;
35      int Calib_Tof;      int CalibS4;
36      int Calib_S4;      int CalibCalPed;
37      int Calib_CalPed;      int Calib1_Ac1;
38      int Calib_Ac;      int Calib1_Ac2;
39      int Run_Header;      int Calib2_Ac1;
40      int Run_Trailer;      int Calib2_Ac2;
41        int RunHeader;
42        int RunTrailer;
43      int CalibHeader;      int CalibHeader;
44      int CalibTrailer;      int CalibTrailer;
45      int InitHeader;      int InitHeader;
46      int InitTrailer;      int InitTrailer;
47      int EventTrk;      int EventTrk;
     int TestTrk;  
     int TestTof;  
48      int Log;      int Log;
49      int VarDump;      int VarDump;
50      int ArrDump;      int ArrDump;
# Line 53  namespace pamela { Line 52  namespace pamela {
52      int Tmtc;      int Tmtc;
53      int Mcmd;      int Mcmd;
54      int ForcedFECmd;      int ForcedFECmd;
55      int AcInit;      int Ac1Init;
56      int CalInit;      int CalInit;
57      int TrkInit;      int TrkInit;
58      int TofInit;      int TofInit;
59      int TrgInit;      int TrgInit;
60        int NdInit;
61        int S4Init;
62        int Ac2Init;
63      int CalAlarm;      int CalAlarm;
64      int AcAlarm;      int Ac1Alarm;
65      int TrkAlarm;      int TrkAlarm;
66      int TrgAlarm;      int TrgAlarm;
67      int TofAlarm;      int TofAlarm;
68        int S4Alarm;
69        int Ac2Alarm;
70        int TsbT;
71        int TsbB;
72    
73      typedef std::map<const pamela::PacketType *, int *> CounterMap;      typedef std::map<const pamela::PacketType *, int *> CounterMap;
74      CounterMap CMap; //!      CounterMap CMap; //!
# Line 72  namespace pamela { Line 78  namespace pamela {
78      /** Get the run number for the last read event of this type. */      /** Get the run number for the last read event of this type. */
79      int getPscu() const { return Pscu; };      int getPscu() const { return Pscu; };
80      /** Get the run number for the last read event of this type. */      /** Get the run number for the last read event of this type. */
81      int Get(pamela::PacketType const *) const;      int Get(pamela::PacketType const *) const throw (NotExistingCounterException);
82      /** Get the run number for the next event of this type. */      /** Get the run number for the next event of this type. */
83      int Next(pamela::PacketType const *) const;      int Next(pamela::PacketType const *) const throw (NotExistingCounterException);
84      int GetRunNumber(void) const { return RunNumber; }      int GetRunNumber(void) const { return RunNumber; }
85      void Increment(pamela::PacketType const *);      void Increment(pamela::PacketType const *) throw (NotExistingCounterException);
86      void PrintCounters() const ;      void PrintCounters() const ;
87      ClassDef(EventCounter, 1)      ClassDef(EventCounter, 7)
88    };    };
89  }  }
90    
91  #endif /* EVENTCOUNTER_H */  #endif /* EVENTCOUNTER_H */
92    
93    

Legend:
Removed from v.2.0  
changed lines
  Added in v.6.2

  ViewVC Help
Powered by ViewVC 1.1.23