Class Reference for E1039 Core & Analysis Software
SQSlowCont_v1.h
Go to the documentation of this file.
1 /*
2  * SQSlowCont_v1.h
3  */
4 #ifndef _H_SQSlowCont_v1_H_
5 #define _H_SQSlowCont_v1_H_
6 #include <phool/PHObject.h>
7 #include <iostream>
8 #include "SQSlowCont.h"
9 
10 class SQSlowCont_v1 : public SQSlowCont {
11 public:
12  SQSlowCont_v1();
13  virtual ~SQSlowCont_v1() {}
14 
15  // PHObject virtual overloads
16  void identify(std::ostream& os = std::cout) const;
17  void Reset() {*this = SQSlowCont_v1();}
18  int isValid() const;
19  SQSlowCont* Clone() const {return (new SQSlowCont_v1(*this));}
20  PHObject* clone() const {return (new SQSlowCont_v1(*this));}
21 
22  virtual std::string get_time_stamp() const {return _time_stamp;}
23  virtual void set_time_stamp(const std::string a) { _time_stamp = 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 std::string get_value() const {return _value;}
29  virtual void set_value(const std::string a) { _value = a; }
30 
31  virtual std::string get_type() const {return _type;}
32  virtual void set_type(const std::string a) { _type = a; }
33 
34 private:
35  std::string _time_stamp;
36  std::string _name;
37  std::string _value;
38  std::string _type;
39 
40  ClassDef(SQSlowCont_v1, 1);
41 };
42 
43 #endif /* _H_SQSlowCont_v1_H_ */
virtual ~SQSlowCont_v1()
Definition: SQSlowCont_v1.h:13
virtual std::string get_time_stamp() const
Return the time when this channel was read out.
Definition: SQSlowCont_v1.h:22
int isValid() const
isValid returns non zero if object contains vailid data
SQSlowCont * Clone() const
Definition: SQSlowCont_v1.h:19
virtual void set_value(const std::string a)
Definition: SQSlowCont_v1.h:29
void Reset()
Clear Event.
Definition: SQSlowCont_v1.h:17
PHObject * clone() const
Virtual copy constructor.
Definition: SQSlowCont_v1.h:20
void identify(std::ostream &os=std::cout) const
virtual std::string get_value() const
Return the value of this channel.
Definition: SQSlowCont_v1.h:28
virtual void set_type(const std::string a)
Definition: SQSlowCont_v1.h:32
virtual std::string get_type() const
Return the type (i.e. caterogy name) of this channel.
Definition: SQSlowCont_v1.h:31
virtual void set_name(const std::string a)
Definition: SQSlowCont_v1.h:26
virtual std::string get_name() const
Return the name of this channel.
Definition: SQSlowCont_v1.h:25
virtual void set_time_stamp(const std::string a)
Definition: SQSlowCont_v1.h:23
An SQ interface class to hold the data of one slow-control channel.
Definition: SQSlowCont.h:15