QwAnalysis
QwSoftwareMeantime.h
Go to the documentation of this file.
1 #ifndef __QwSoftwareMeantime__
2 #define __QwSoftwareMeantime__
3 /**
4  * \file QwSoftwareMeantime.h
5  * \brief
6  * \author Jeong Han Lee, jhlee@jlab.org
7  * \date Wednesday, March 7 15:17:15 EST 2012
8  */
9 
10 #include <iostream>
11 #include <cmath>
12 
13 
14 #include "TObject.h"
15 #include "TObjArray.h"
16 #include "TString.h"
17 #include "TMath.h"
18 
19 #include "TROOT.h"
20 
21 
22 
23 
24 /**
25  * \class MeanTime
26  * \ingroup QwAnalysis
27  *
28  * \brief one software meantim holder
29  *
30  */
31 
32 // A good meantime holder
33 class MeanTime : public TObject
34 {
35 
36 public:
37 
38  MeanTime();
39  MeanTime(TString name, Long64_t ev_id, Double_t p_in, Double_t n_in, Int_t p_id, Int_t n_id);
40  virtual ~MeanTime();
41 
42  Bool_t HasMeanTime() {return fHasValue;};
43 
44  Double_t GetMeanTime() const { return fMeanTime; };
45  Double_t GetSubtractTime() const { return fSubtractTime; };
46 
47  Double_t GetDiffHardSoftMeanTime() const { return fDiffHardSoftMeanTime; };
48 
49  Double_t GetPositiveValue() const { return fPositiveValue; };
50  Double_t GetNegativeValue() const { return fNegativeValue; };
51 
56 
57  Int_t GetPositiveHitId() const { return fPositiveHitId; };
58  Int_t GetNegativeHitId() const { return fNegativeHitId; };
59 
60  Int_t GetMeanTimeId() const { return fMeanTimeId; };
61  Int_t GetPlane() const { return fPlane;};
62 
63  void AddPNValues(Double_t p_value, Double_t n_value, Int_t p_id, Int_t n_id);
64  void SetDetectorType(TString d_type) {fDetectorType = d_type;};
65  void SetMeanTimeId(Int_t id) {fMeanTimeId = id;};
66  void SetPlane(Int_t in) {fPlane = in;};
67 
68  void SetHardwareMeanTime(Double_t hardware_meantime);
69 
70  void Print(Bool_t on);
71 
72  Bool_t IsInTimeWindow(Double_t time_window);
73  Bool_t IsHitIDsMatch();
74 
75  void ClearEventData();
76 
77 private:
78 
79  Bool_t fHasValue;
80  Double_t fMeanTime;
81  Double_t fSubtractTime; // positive - negative
82 
83  Double_t fDiffHardSoftMeanTime; // Hardware MT - Software MT
85 
86  Double_t fPositiveValue;
87  Double_t fNegativeValue;
88 
91  Int_t fMeanTimeId;
92 
93  Long64_t fEventId;
94  TString fDetectorType;
95  Int_t fPlane;
96 
97  static const Int_t fSoftwareMeantimeHitElementID;
98  static const Int_t fSoftwarePositiveHitElementID;
99  static const Int_t fSoftwareNegativeHitElementID;
100  static const Int_t fSoftwareSubtractHitElementID;
101 
102  ClassDef(MeanTime,0);
103 };
104 
105 
106 
107 
108 /**
109  * \class MeanTimeContainer
110  * \ingroup QwAnalysis
111  *
112  * \brief Software Meantime container
113  *
114  */
115 
116 
117 // all possible combination of meantimes per an event
118 // a method to find good meantimes.
119 // ....
120 class MeanTimeContainer : public TObject
121 {
122 
123 
124  public :
125  Int_t fNMeanTimes;
126  TObjArray *fMeanTimeList;
128  Int_t fNPositive;
129  Int_t fNNegative;
130 
131 public:
132 
134  MeanTimeContainer(TString name);
135  virtual ~MeanTimeContainer();
136 
137 
138 
139  void Add(Double_t p_value, Double_t n_value, Int_t hit_id);
140  void Add(Double_t p_value[7], Double_t n_value[7]);
141  void Add(Double_t p_value[7], Double_t n_value[7], Double_t hardware_meantime[7]);
142  void Add(Int_t element, Int_t hit_number, Double_t time_ns);
143 
144  Int_t AddMeanTime(TString name, Long64_t ev_id, Double_t p_in, Double_t n_in, Int_t p_id, Int_t n_id);
145  Int_t AddMeanTime(TString name, Int_t plane_id, Long64_t ev_id, Double_t p_in, Double_t n_in, Int_t p_id, Int_t n_id);
146 
147  void ClearEventData();
148 
149  void ProcessMeanTime();
150 
151  Int_t SoftwareMTSize() const {return fNMeanTimes;};
152  Int_t HardwareMTSize() const {return fNHarewareMeanTimes;};
153 
154  void SetSystemName (const TString name ) { fDetectorName = name;};
155  void SetPlane (const Int_t in ) { fPlane = in;};
156  void SetTimeWindow (const Double_t in_ns) { fTimeWindowNs = in_ns;};
157  void SetDetectorType(const TString name ) { fDetectorName = name;};
158  void SetEventId (const Long64_t in ) { fEventId = in;};
159  void SetDisableMatchHardwareMeantime(const Bool_t disable) { fDisableMatchHardwareMeanTime=disable;};
160  const TString GetDetectorType() const {return fDetectorName;};
161  Int_t GetPlane() const { return fPlane;};
162 
163  MeanTime *GetMeanTimeObject(Int_t index);
164  Double_t GetMeanTime(Int_t index);
165 
166  void Print(Bool_t on);
167 
168 private:
169 
170  Double_t fTimeWindowNs;
171  TString fDetectorName;
172  Int_t fPlane;
173 
174  Long64_t fEventId;
175 
176  Double_t fPositiveValue[7];
177  Double_t fNegativeValue[7];
179 
180  void MatchHardwareMeanTime();
181  Bool_t IsHarewareMatchSoftware();
182 
184 
186 
187 };
188 
189 
190 #endif
Int_t GetMeanTimeId() const
Double_t GetDiffHardSoftMeanTime() const
Int_t fNegativeHitId
static const Int_t fSoftwareNegativeHitElementID
const Int_t GetSoftwareSubtractHitElement() const
static const double in
Definition: QwUnits.h:66
Double_t GetSubtractTime() const
static const Int_t fSoftwareSubtractHitElementID
static const Int_t fSoftwarePositiveHitElementID
void SetTimeWindow(const Double_t in_ns)
Bool_t fHasValue
Int_t SoftwareMTSize() const
void Add(Double_t p_value, Double_t n_value, Int_t hit_id)
Double_t GetPositiveValue() const
Double_t fDiffHardSoftMeanTime
Software Meantime container.
TString fDetectorType
Int_t GetPositiveHitId() const
void Print(Bool_t on)
void SetSystemName(const TString name)
Double_t fSubtractTime
const Int_t GetSoftwareMeantimeHitElement() const
void SetPlane(Int_t in)
Int_t fPositiveHitId
ClassDef(MeanTimeContainer, 0)
void SetDetectorType(TString d_type)
Bool_t IsHitIDsMatch()
Double_t GetNegativeValue() const
Double_t fHardWareMeanTime
Int_t GetPlane() const
ClassDef(MeanTime, 0)
const TString GetDetectorType() const
const Int_t GetSoftwarePositiveHitElement() const
Double_t fNegativeValue
Double_t fPositiveValue[7]
Int_t HardwareMTSize() const
Double_t fMeanTime
one software meantim holder
MeanTime * GetMeanTimeObject(Int_t index)
Bool_t IsInTimeWindow(Double_t time_window)
void SetDetectorType(const TString name)
void Print(Bool_t on)
Bool_t fDisableMatchHardwareMeanTime
Double_t GetMeanTime(Int_t index)
void AddPNValues(Double_t p_value, Double_t n_value, Int_t p_id, Int_t n_id)
Int_t GetNegativeHitId() const
Long64_t fEventId
void ClearEventData()
const Int_t GetSoftwareNegativeHitElement() const
void SetPlane(const Int_t in)
Bool_t HasMeanTime()
Double_t fNegativeValue[7]
Double_t fPositiveValue
void SetEventId(const Long64_t in)
void SetMeanTimeId(Int_t id)
Double_t GetMeanTime() const
void SetHardwareMeanTime(Double_t hardware_meantime)
Double_t fHardwareMeantimeValue[7]
virtual ~MeanTime()
Int_t AddMeanTime(TString name, Long64_t ev_id, Double_t p_in, Double_t n_in, Int_t p_id, Int_t n_id)
void SetDisableMatchHardwareMeantime(const Bool_t disable)
static const Int_t fSoftwareMeantimeHitElementID
Int_t GetPlane() const