QwAnalysis
QwQuartzBarLight.cc
Go to the documentation of this file.
1 #include "QwQuartzBarLight.h"
3 
4 // Qweak headers
5 #include "QwLog.h"
6 #include "QwUnits.h"
7 #include "QwHit.h"
8 #include "QwHitContainer.h"
9 #include "QwTreeLine.h"
10 #include "QwPartialTrack.h"
11 #include "QwTrack.h"
12 #include "QwVertex.h"
13 
14 
16  printf("\nJJ QwQuartzBarLight constructor\n\n");
17 }
18 
19 
21 }
22 
23 #if 0
24 // Clear the local TClonesArrays
25 void QwQuartzBarLight::Clear(Option_t *option)
26 {
27  ClearHits();
28  ClearTreeLines();
29  ClearPartialTracks();
30  ClearTracks();
31 };
32 
33 // Delete the static TClonesArrays
34 void QwQuartzBarLight::Reset(Option_t *option)
35 {
36  ResetHits();
37  ResetTreeLines();
38  ResetPartialTracks();
39  ResetTracks();
40 };
41 
42 
43 // Print the event
44 void QwQuartzBarLight::Print()
45 {
46  // Event header
47  std::cout << *fEventHeader << std::endl;
48  // Event kinematics
49  std::cout << "Q^2 = " << fPrimaryQ2/Qw::MeV << " MeV" << std::endl;
50  std::cout << "weight = " << fCrossSectionWeight << std::endl;
51  std::cout << "energy = " << fTotalEnergy/Qw::MeV << " MeV" << std::endl;
52  std::cout << "K.E. = " << fKineticEnergy/Qw::MeV << " MeV" << std::endl;
53  std::cout << "vertex position = " << fVertexPosition.Z()/Qw::cm << " cm" << std::endl;
54  std::cout << "vertex momentum = " << fVertexMomentum.Z()/Qw::MeV << " MeV" << std::endl;
55  // Event content
56  std::cout << "Hits in this event:" << std::endl;
57  PrintHits();
58  std::cout << "Tree lines in this event:" << std::endl;
59  PrintTreeLines();
60  std::cout << "Partial tracks in this event:" << std::endl;
61  PrintPartialTracks();
62  std::cout << "Tracks in this event:" << std::endl;
63  PrintTracks();
64 }
65 
66 
67 // Create a new QwHit
68 QwHit* QwQuartzBarLight::CreateNewHit()
69 {
70  #if defined QWHITS_IN_STATIC_TCLONESARRAY || defined QWHITS_IN_LOCAL_TCLONESARRAY
71  TClonesArray &hits = *fQwHits;
72  QwHit *hit = new (hits[fNQwHits++]) QwHit();
73  #else // QWHITS_IN_STL_VECTOR
74  QwHit* hit = new QwHit();
75  AddHit(hit);
76  #endif
77 
78  return hit;
79 };
80 
81 // Add an existing QwHit
82 void QwQuartzBarLight::AddHit(QwHit* hit)
83 {
84  #if defined QWHITS_IN_STATIC_TCLONESARRAY || defined QWHITS_IN_LOCAL_TCLONESARRAY
85  QwHit* newhit = CreateNewHit();
86  *newhit = *hit;
87  #else // QWHITS_IN_STL_VECTOR
88  fQwHits.push_back(hit);
89  #endif
90 
91  fNQwHits++;
92 };
93 
94 // Clear the local TClonesArray of hits
95 void QwQuartzBarLight::ClearHits(Option_t *option)
96 {
97  #if defined QWHITS_IN_STATIC_TCLONESARRAY || defined QWHITS_IN_LOCAL_TCLONESARRAY
98  fQwHits->Clear(option); // Clear the local TClonesArray
99  #else // QWHITS_IN_STL_VECTOR
100  fQwHits.clear();
101  #endif
102 
103  fNQwHits = 0;
104 };
105 
106 // Delete the static TClonesArray of hits
107 void QwQuartzBarLight::ResetHits(Option_t *option)
108 {
109  #if defined QWHITS_IN_STATIC_TCLONESARRAY || defined QWHITS_IN_LOCAL_TCLONESARRAY
110  delete gQwHits;
111  gQwHits = 0;
112  #endif // QWHITS_IN_STATIC_TCLONESARRAY || QWHITS_IN_LOCAL_TCLONESARRAY
113  ClearHits();
114 }
115 
116 // Print the hits
117 void QwQuartzBarLight::PrintHits()
118 {
119  #if defined QWHITS_IN_STATIC_TCLONESARRAY || defined QWHITS_IN_LOCAL_TCLONESARRAY
120  TIterator* iterator = fQwHits->MakeIterator();
121  QwHit* hit = 0;
122  while ((hit = (QwHit*) iterator->Next()))
123  std::cout << *hit << std::endl;
124  delete iterator;
125  #else // QWHITS_IN_STL_VECTOR
126  for (std::vector<QwHit*>::iterator hit = fQwHits.begin();
127  hit != fQwHits.end(); hit++)
128  std::cout << **hit << std::endl;
129  #endif
130 }
131 
132 
133 // Add the hits of a QwHitContainer to the TClonesArray
134 void QwQuartzBarLight::AddHitContainer(QwHitContainer* hitlist)
135 {
136  ClearHits();
137  for (QwHitContainer::iterator hit = hitlist->begin();
138  hit != hitlist->end(); hit++) {
139  QwHit* p = &(*hit);
140  AddHit(p);
141  }
142 }
143 
144 // Get the hits from the TClonesArray to a QwHitContainer
145 QwHitContainer* QwQuartzBarLight::GetHitContainer()
146 {
147  QwHitContainer* hitlist = new QwHitContainer();
148  #if defined QWHITS_IN_STATIC_TCLONESARRAY || defined QWHITS_IN_LOCAL_TCLONESARRAY
149  TIterator* iterator = fQwHits->MakeIterator();
150  QwHit* hit = 0;
151  while ((hit = (QwHit*) iterator->Next()))
152  hitlist->push_back(*hit);
153  #else // QWHITS_IN_STL_VECTOR
154  for (std::vector<QwHit*>::iterator hit = fQwHits.begin();
155  hit != fQwHits.end(); hit++)
156  hitlist->push_back(*hit);
157  #endif
158  return hitlist;
159 }
160 
161 
162 // Create a new QwTreeLine
163 QwTreeLine* QwQuartzBarLight::CreateNewTreeLine()
164 {
165  TClonesArray &treelines = *fQwTreeLines;
166  QwTreeLine *treeline = new (treelines[fNQwTreeLines++]) QwTreeLine();
167  return treeline;
168 };
169 
170 // Add an existing QwTreeLine
171 void QwQuartzBarLight::AddTreeLine(QwTreeLine* treeline)
172 {
173  QwTreeLine* newtreeline = CreateNewTreeLine();
174  *newtreeline = *treeline;
175  newtreeline->next = 0;
176 };
177 
178 // Add a linked list of QwTreeLine's
179 void QwQuartzBarLight::AddTreeLineList(QwTreeLine* treelinelist)
180 {
181  for (QwTreeLine *treeline = treelinelist;
182  treeline; treeline = treeline->next)
183  if (treeline->IsValid())
184  AddTreeLine(treeline);
185 };
186 
187 // Clear the local TClonesArray of tree lines
188 void QwQuartzBarLight::ClearTreeLines(Option_t *option)
189 {
190  fQwTreeLines->Clear(option); // Clear the local TClonesArray
191  fNQwTreeLines = 0; // No tree lines in local TClonesArray
192 };
193 
194 // Delete the static TClonesArray of tree lines
195 void QwQuartzBarLight::ResetTreeLines(Option_t *option)
196 {
197  delete gQwTreeLines;
198  gQwTreeLines = 0;
199 }
200 
201 // Print the tree lines
202 void QwQuartzBarLight::PrintTreeLines()
203 {
204  TIterator* iterator = fQwTreeLines->MakeIterator();
205  QwTreeLine* treeline = 0;
206  while ((treeline = (QwTreeLine*) iterator->Next()))
207  std::cout << *treeline << std::endl;
208  delete iterator;
209 }
210 
211 
212 // Create a new QwPartialTrack
213 QwPartialTrack* QwQuartzBarLight::CreateNewPartialTrack()
214 {
215  TClonesArray &partialtracks = *fQwPartialTracks;
216  QwPartialTrack *partialtrack = new (partialtracks[fNQwPartialTracks++]) QwPartialTrack();
217  return partialtrack;
218 };
219 
220 // Add an existing QwPartialTrack
221 void QwQuartzBarLight::AddPartialTrack(QwPartialTrack* partialtrack)
222 {
223  QwPartialTrack* newpartialtrack = CreateNewPartialTrack();
224  *newpartialtrack = *partialtrack;
225 };
226 
227 // Add a linked list of QwPartialTrack's
228 void QwQuartzBarLight::AddPartialTrackList(QwPartialTrack* partialtracklist)
229 {
230  for (QwPartialTrack *partialtrack = partialtracklist;
231  partialtrack; partialtrack = partialtrack->next)
232  if (partialtrack->IsValid())
233  AddPartialTrack(partialtrack);
234 };
235 
236 // Add a vector of QwPartialTracks
237 void QwQuartzBarLight::AddPartialTrackList(const std::vector<QwPartialTrack*>& partialtracklist)
238 {
239  for (size_t i = 0; i < partialtracklist.size(); i++)
240  if (partialtracklist[i]->IsValid())
241  AddPartialTrack(partialtracklist[i]);
242 };
243 
244 // Clear the local TClonesArray of hits
245 void QwQuartzBarLight::ClearPartialTracks(Option_t *option)
246 {
247  fQwPartialTracks->Clear(option); // Clear the local TClonesArray
248  fNQwPartialTracks = 0; // No partial tracks in local TClonesArray
249 };
250 
251 // Delete the static TClonesArray of partial tracks
252 void QwQuartzBarLight::ResetPartialTracks(Option_t *option)
253 {
254  delete gQwPartialTracks;
255  gQwPartialTracks = 0;
256 }
257 
258 // Print the partial tracks
259 void QwQuartzBarLight::PrintPartialTracks()
260 {
261  TIterator* iterator = fQwPartialTracks->MakeIterator();
262  QwPartialTrack* partialtrack = 0;
263  while ((partialtrack = (QwPartialTrack*) iterator->Next()))
264  std::cout << *partialtrack << std::endl;
265 }
266 
267 
268 // Create a new QwTrack
269 QwTrack* QwQuartzBarLight::CreateNewTrack()
270 {
271  TClonesArray &tracks = *fQwTracks;
272  QwTrack *track = new (tracks[fNQwTracks++]) QwTrack();
273  return track;
274 };
275 
276 // Add an existing QwTrack
277 void QwQuartzBarLight::AddTrack(QwTrack* track)
278 {
279  QwTrack* newtrack = CreateNewTrack();
280  *newtrack = *track;
281 };
282 
283 // Add a linked list of QwTrack's
284 void QwQuartzBarLight::AddTrackList(QwTrack* tracklist)
285 {
286  for (QwTrack *track = tracklist;
287  track; track = track->next)
288  //if (track->IsValid()) // TODO
289  AddTrack(track);
290 };
291 
292 // Add a vector of QwTracks
293 void QwQuartzBarLight::AddTrackList(const std::vector<QwTrack*>& tracklist)
294 {
295  for (size_t i = 0; i < tracklist.size(); i++)
296  //if (tracklist[i]->IsValid()) // TODO
297  AddTrack(tracklist[i]);
298 };
299 
300 // Clear the local TClonesArray of hits
301 void QwQuartzBarLight::ClearTracks(Option_t *option)
302 {
303  fQwTracks->Clear(option); // Clear the local TClonesArray
304  fNQwTracks = 0; // No tracks in local TClonesArray
305 };
306 
307 // Delete the static TClonesArray of tracks
308 void QwQuartzBarLight::ResetTracks(Option_t *option)
309 {
310  delete gQwTracks;
311  gQwTracks = 0;
312 }
313 
314 // Print the tracks
315 void QwQuartzBarLight::PrintTracks()
316 {
317  TIterator* iterator = fQwTracks->MakeIterator();
318  QwTrack* track = 0;
319  while ((track = (QwTrack*) iterator->Next())) {
320  std::cout << *track << std::endl;
321  std::cout << *(track->fBridge) << std::endl;
322  }
323 }
324 
325 #endif
QwQuartzBarLight()
Default constructor.
Definition of the partial track class.
Definition of the track class.
Draft skeleton for the decoding-to-QTR interface class.
Contains the complete track as a concatenation of partial tracks.
Definition: QwTrack.h:30
virtual ~QwQuartzBarLight()
Destructor.
Definition of the one-dimensional track stubs.
void Clear(Option_t *option="")
One-dimensional (u, v, or x) track stubs and associated hits.
Definition: QwTreeLine.h:51
ClassImp(QwF1TDC)
Contains header information of a tracked event.
bool IsValid() const
Is this tree line valid?
Definition: QwTreeLine.h:90
QwTreeLine * next
Definition: QwTreeLine.h:231
static const double MeV
Definition: QwUnits.h:94
Hit structure uniquely defining each hit.
Definition: QwHit.h:43
bool IsValid() const
Contains the straight part of a track in one region only.
static const double cm
Length units: base unit is mm.
Definition: QwUnits.h:61