Class Reference for E1039 Core & Analysis Software
SQScaler_v1.h
Go to the documentation of this file.
1 /*
2  * SQScaler_v1.h
3  */
4 #ifndef _H_SQScaler_v1_H_
5 #define _H_SQScaler_v1_H_
6 #include <phool/PHObject.h>
7 #include <iostream>
8 #include "SQScaler.h"
9 
10 class SQScaler_v1 : public SQScaler {
11 public:
12  SQScaler_v1();
13  virtual ~SQScaler_v1() {}
14 
15  // PHObject virtual overloads
16  void identify(std::ostream& os = std::cout) const;
17  void Reset() {*this = SQScaler_v1();}
18  int isValid() const;
19  SQScaler* Clone() const {return (new SQScaler_v1(*this));}
20  PHObject* clone() const {return (new SQScaler_v1(*this));}
21 
22  virtual ScalerType_t get_type() const { return _type; }
23  virtual void set_type(const ScalerType_t a) { _type = a; }
24 
25  virtual std::string get_name() const { return _name; }
26  virtual void set_name(const std::string a) { _name = a; }
27 
28  virtual int get_count() const { return _count; }
29  virtual void set_count(const int a) { _count = a; }
30 
31 private:
32  ScalerType_t _type;
33  std::string _name;
34  int _count;
35 
36  ClassDef(SQScaler_v1, 1);
37 };
38 
39 #endif /* _H_SQScaler_v1_H_ */
virtual void set_name(const std::string a)
Definition: SQScaler_v1.h:26
virtual void set_count(const int a)
Definition: SQScaler_v1.h:29
SQScaler * Clone() const
Use Clone() or clone()??
Definition: SQScaler_v1.h:19
virtual std::string get_name() const
Return the name of this scaler channel.
Definition: SQScaler_v1.h:25
void Reset()
Clear Event.
Definition: SQScaler_v1.h:17
PHObject * clone() const
Use Clone() or clone()??
Definition: SQScaler_v1.h:20
virtual void set_type(const ScalerType_t a)
Definition: SQScaler_v1.h:23
void identify(std::ostream &os=std::cout) const
Definition: SQScaler_v1.cxx:18
virtual int get_count() const
Return the count of this scaler channel.
Definition: SQScaler_v1.h:28
int isValid() const
isValid returns non zero if object contains vailid data
Definition: SQScaler_v1.cxx:27
virtual ScalerType_t get_type() const
Return 'BOS' or 'EOS' according to the timing when this channel was read out.
Definition: SQScaler_v1.h:22
virtual ~SQScaler_v1()
Definition: SQScaler_v1.h:13
An SQ interface class to hold the data of one scaler channel.
Definition: SQScaler.h:15
ScalerType_t
Definition: SQScaler.h:17