Class Reference for E1039 Core & Analysis Software
SQSpill_v1.h
Go to the documentation of this file.
1 /*
2  * SQSpill_v1.h
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw
6  */
7 
8 #ifndef _H_SQSpill_v1_H_
9 #define _H_SQSpill_v1_H_
10 
11 
12 #include <phool/PHObject.h>
13 #include <iostream>
14 
15 #include "SQSpill.h"
16 
17 class SQSpill_v1 : public SQSpill {
18 
19 public:
20 
21  SQSpill_v1();
22  virtual ~SQSpill_v1() {}
23 
24  // PHObject virtual overloads
25 
26  void identify(std::ostream& os = std::cout) const;
27  void Reset() {*this = SQSpill_v1();}
28  int isValid() const;
29  SQSpill* Clone() const {return (new SQSpill_v1(*this));}
30 
31  virtual int get_run_id() const {return _run_id;}
32  virtual void set_run_id(const int a) {_run_id = a;}
33 
34  virtual int get_spill_id() const {return _spill_id;}
35  virtual void set_spill_id(const int a) {_spill_id = a;}
36 
37  virtual short get_target_pos() const {return _target_pos;}
38  virtual void set_target_pos(const short a) {_target_pos = a;}
39 
40 
41 private:
42 
43  int _run_id;
44  int _spill_id;
45  short _target_pos;
46 
47  ClassDef(SQSpill_v1, 1);
48 };
49 
50 
51 #endif /* _H_SQSpill_v1_H_ */
virtual ~SQSpill_v1()
Definition: SQSpill_v1.h:22
virtual int get_run_id() const
Return the run ID when this spill was taken.
Definition: SQSpill_v1.h:31
int isValid() const
isValid returns non zero if object contains vailid data
Definition: SQSpill_v1.cxx:34
virtual int get_spill_id() const
Return the spill ID.
Definition: SQSpill_v1.h:34
virtual void set_run_id(const int a)
Definition: SQSpill_v1.h:32
void Reset()
Clear Event.
Definition: SQSpill_v1.h:27
virtual void set_spill_id(const int a)
Definition: SQSpill_v1.h:35
SQSpill * Clone() const
Definition: SQSpill_v1.h:29
virtual void set_target_pos(const short a)
Definition: SQSpill_v1.h:38
virtual short get_target_pos() const
Return the target position in this spill.
Definition: SQSpill_v1.h:37
void identify(std::ostream &os=std::cout) const
Definition: SQSpill_v1.cxx:24
An SQ interface class to hold the data of one spill.
Definition: SQSpill.h:19