Class Reference for E1039 Core & Analysis Software
SQSpill_v2.h
Go to the documentation of this file.
1 /*
2  * SQSpill_v2.h
3  */
4 #ifndef _H_SQSpill_v2_H_
5 #define _H_SQSpill_v2_H_
6 #include <phool/PHObject.h>
7 #include <iostream>
8 #include "SQSpill.h"
9 class SQStringMap;
10 
11 class SQSpill_v2 : public SQSpill {
12 
13 public:
14 
15  SQSpill_v2();
16  virtual ~SQSpill_v2();
17 
18  // PHObject virtual overloads
19 
20  void identify(std::ostream& os = std::cout) const;
21  void Reset() {*this = SQSpill_v2();}
22  int isValid() const;
23  SQSpill* Clone() const {return (new SQSpill_v2(*this));}
24 
25  virtual int get_run_id() const {return _run_id;}
26  virtual void set_run_id(const int a) {_run_id = a;}
27 
28  virtual int get_spill_id() const {return _spill_id;}
29  virtual void set_spill_id(const int a) {_spill_id = a;}
30 
31  virtual short get_target_pos() const {return _target_pos;}
32  virtual void set_target_pos(const short a) {_target_pos = a;}
33 
34  virtual int get_bos_coda_id() const { return _bos_coda_id; }
35  virtual void set_bos_coda_id(const int a) { _bos_coda_id = a; }
36 
37  virtual int get_bos_vme_time() const {return _bos_vme_time; }
38  virtual void set_bos_vme_time(const int a) { _bos_vme_time = a; }
39 
40  virtual int get_eos_coda_id() const {return _eos_coda_id; }
41  virtual void set_eos_coda_id(const int a) { _eos_coda_id = a; }
42 
43  virtual int get_eos_vme_time() const {return _eos_vme_time; }
44  virtual void set_eos_vme_time(const int a) { _eos_vme_time = a; }
45 
46  virtual SQStringMap* get_bos_scaler_list() { return _bos_scaler_list; }
47  virtual SQStringMap* get_eos_scaler_list() { return _eos_scaler_list; }
48 
49  virtual SQStringMap* get_slow_cont_list() { return _slow_cont_list; }
50 
51 private:
52 
53  int _run_id;
54  int _spill_id;
55  short _target_pos;
56  int _bos_coda_id;
57  int _bos_vme_time;
58  int _eos_coda_id;
59  int _eos_vme_time;
60  SQStringMap* _bos_scaler_list;
61  SQStringMap* _eos_scaler_list;
62  SQStringMap* _slow_cont_list;
63 
64  ClassDef(SQSpill_v2, 1);
65 };
66 
67 
68 #endif /* _H_SQSpill_v2_H_ */
virtual int get_bos_coda_id() const
[Obsolete] Use SQHardSpill instead.
Definition: SQSpill_v2.h:34
virtual SQStringMap * get_slow_cont_list()
Return the list of slow control variables.
Definition: SQSpill_v2.h:49
void identify(std::ostream &os=std::cout) const
Definition: SQSpill_v2.cxx:35
virtual int get_eos_vme_time() const
[Obsolete] Use SQHardSpill instead.
Definition: SQSpill_v2.h:43
virtual SQStringMap * get_eos_scaler_list()
Return the list of scaler variables read out at EOS.
Definition: SQSpill_v2.h:47
virtual void set_spill_id(const int a)
Definition: SQSpill_v2.h:29
virtual ~SQSpill_v2()
Definition: SQSpill_v2.cxx:28
int isValid() const
isValid returns non zero if object contains vailid data
Definition: SQSpill_v2.cxx:45
virtual void set_bos_vme_time(const int a)
Definition: SQSpill_v2.h:38
virtual int get_eos_coda_id() const
[Obsolete] Use SQHardSpill instead.
Definition: SQSpill_v2.h:40
virtual int get_bos_vme_time() const
[Obsolete] Use SQHardSpill instead.
Definition: SQSpill_v2.h:37
virtual SQStringMap * get_bos_scaler_list()
Return the list of scaler variables read out at BOS.
Definition: SQSpill_v2.h:46
virtual void set_target_pos(const short a)
Definition: SQSpill_v2.h:32
virtual void set_bos_coda_id(const int a)
Definition: SQSpill_v2.h:35
virtual int get_run_id() const
Return the run ID when this spill was taken.
Definition: SQSpill_v2.h:25
void Reset()
Clear Event.
Definition: SQSpill_v2.h:21
virtual int get_spill_id() const
Return the spill ID.
Definition: SQSpill_v2.h:28
virtual short get_target_pos() const
Return the target position in this spill.
Definition: SQSpill_v2.h:31
virtual void set_eos_coda_id(const int a)
Definition: SQSpill_v2.h:41
virtual void set_run_id(const int a)
Definition: SQSpill_v2.h:26
SQSpill * Clone() const
Definition: SQSpill_v2.h:23
virtual void set_eos_vme_time(const int a)
Definition: SQSpill_v2.h:44
An SQ interface class to hold the data of one spill.
Definition: SQSpill.h:19
A general-purpose SQ interface class that holds a list of PHObjects with key = string.
Definition: SQStringMap.h:14