Class Reference for E1039 Core & Analysis Software
SyncObjectv1.h
Go to the documentation of this file.
1 #ifndef __SYNCOBJECTv1_H
2 #define __SYNCOBJECTv1_H
3 
4 #include "SyncObject.h"
5 #include <iostream>
6 
7 class SyncObjectv1: public SyncObject
8 {
9  public:
10 
13  SyncObjectv1(const SyncObject&);
14 
15  SyncObjectv1 *clone() const {return new SyncObjectv1(*this);}
17  virtual ~SyncObjectv1() {}
18 
20  void Reset();
21 
25  void identify(std::ostream& os = std::cout) const;
26 
28  int isValid() const;
29 
31  void EventCounter(const int ival) {eventcounter = ival;}
32 
34  void EventNumber(const int ival) {eventnumber = ival;}
35 
37  void RunNumber(const int ival) {runnumber = ival;}
38 
39  protected:
41  int EventCounter() const {return eventcounter;}
43  int EventNumber() const {return eventnumber;}
45  int RunNumber() const {return runnumber;}
46 
47  int eventcounter; // running counter
48  int eventnumber; // Event number
49  int runnumber; // Run number
50 
51  private: // prevent doc++ from showing ClassDef
52  ClassDef(SyncObjectv1,1)
53 };
54 
55 #endif
void Reset()
Clear Event.
Definition: SyncObjectv1.cc:21
int isValid() const
isValid returns non zero if object contains valid data
Definition: SyncObjectv1.cc:40
void EventCounter(const int ival)
set Event Counter
Definition: SyncObjectv1.h:31
int RunNumber() const
get Run Number
Definition: SyncObjectv1.h:45
int EventCounter() const
get Event Counter
Definition: SyncObjectv1.h:41
int EventNumber() const
get Event Number
Definition: SyncObjectv1.h:43
void identify(std::ostream &os=std::cout) const
Definition: SyncObjectv1.cc:29
void EventNumber(const int ival)
set Event Number
Definition: SyncObjectv1.h:34
void RunNumber(const int ival)
set Run Number
Definition: SyncObjectv1.h:37
SyncObjectv1()
ctor
SyncObjectv1 * clone() const
Virtual copy constructor.
Definition: SyncObjectv1.h:15
virtual ~SyncObjectv1()
dtor
Definition: SyncObjectv1.h:17