16 printf(
"\nJJ QwQuartzBarLight constructor\n\n");
25 void QwQuartzBarLight::Clear(Option_t *option)
34 void QwQuartzBarLight::Reset(Option_t *option)
44 void QwQuartzBarLight::Print()
47 std::cout << *fEventHeader << std::endl;
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;
56 std::cout <<
"Hits in this event:" << std::endl;
58 std::cout <<
"Tree lines in this event:" << std::endl;
60 std::cout <<
"Partial tracks in this event:" << std::endl;
62 std::cout <<
"Tracks in this event:" << std::endl;
68 QwHit* QwQuartzBarLight::CreateNewHit()
70 #if defined QWHITS_IN_STATIC_TCLONESARRAY || defined QWHITS_IN_LOCAL_TCLONESARRAY
71 TClonesArray &hits = *fQwHits;
73 #else // QWHITS_IN_STL_VECTOR
82 void QwQuartzBarLight::AddHit(
QwHit* hit)
84 #if defined QWHITS_IN_STATIC_TCLONESARRAY || defined QWHITS_IN_LOCAL_TCLONESARRAY
85 QwHit* newhit = CreateNewHit();
87 #else // QWHITS_IN_STL_VECTOR
88 fQwHits.push_back(hit);
95 void QwQuartzBarLight::ClearHits(Option_t *option)
97 #if defined QWHITS_IN_STATIC_TCLONESARRAY || defined QWHITS_IN_LOCAL_TCLONESARRAY
98 fQwHits->Clear(option);
99 #else // QWHITS_IN_STL_VECTOR
107 void QwQuartzBarLight::ResetHits(Option_t *option)
109 #if defined QWHITS_IN_STATIC_TCLONESARRAY || defined QWHITS_IN_LOCAL_TCLONESARRAY
112 #endif // QWHITS_IN_STATIC_TCLONESARRAY || QWHITS_IN_LOCAL_TCLONESARRAY
117 void QwQuartzBarLight::PrintHits()
119 #if defined QWHITS_IN_STATIC_TCLONESARRAY || defined QWHITS_IN_LOCAL_TCLONESARRAY
120 TIterator* iterator = fQwHits->MakeIterator();
122 while ((hit = (
QwHit*) iterator->Next()))
123 std::cout << *hit << std::endl;
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;
137 for (QwHitContainer::iterator hit = hitlist->begin();
138 hit != hitlist->end(); hit++) {
148 #if defined QWHITS_IN_STATIC_TCLONESARRAY || defined QWHITS_IN_LOCAL_TCLONESARRAY
149 TIterator* iterator = fQwHits->MakeIterator();
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);
163 QwTreeLine* QwQuartzBarLight::CreateNewTreeLine()
165 TClonesArray &treelines = *fQwTreeLines;
171 void QwQuartzBarLight::AddTreeLine(
QwTreeLine* treeline)
173 QwTreeLine* newtreeline = CreateNewTreeLine();
174 *newtreeline = *treeline;
175 newtreeline->
next = 0;
179 void QwQuartzBarLight::AddTreeLineList(
QwTreeLine* treelinelist)
182 treeline; treeline = treeline->
next)
184 AddTreeLine(treeline);
188 void QwQuartzBarLight::ClearTreeLines(Option_t *option)
190 fQwTreeLines->Clear(option);
195 void QwQuartzBarLight::ResetTreeLines(Option_t *option)
202 void QwQuartzBarLight::PrintTreeLines()
204 TIterator* iterator = fQwTreeLines->MakeIterator();
206 while ((treeline = (
QwTreeLine*) iterator->Next()))
207 std::cout << *treeline << std::endl;
215 TClonesArray &partialtracks = *fQwPartialTracks;
221 void QwQuartzBarLight::AddPartialTrack(
QwPartialTrack* partialtrack)
224 *newpartialtrack = *partialtrack;
228 void QwQuartzBarLight::AddPartialTrackList(
QwPartialTrack* partialtracklist)
231 partialtrack; partialtrack = partialtrack->next)
233 AddPartialTrack(partialtrack);
237 void QwQuartzBarLight::AddPartialTrackList(
const std::vector<QwPartialTrack*>& partialtracklist)
239 for (
size_t i = 0; i < partialtracklist.size(); i++)
240 if (partialtracklist[i]->IsValid())
241 AddPartialTrack(partialtracklist[i]);
245 void QwQuartzBarLight::ClearPartialTracks(Option_t *option)
247 fQwPartialTracks->
Clear(option);
248 fNQwPartialTracks = 0;
252 void QwQuartzBarLight::ResetPartialTracks(Option_t *option)
254 delete gQwPartialTracks;
255 gQwPartialTracks = 0;
259 void QwQuartzBarLight::PrintPartialTracks()
261 TIterator* iterator = fQwPartialTracks->MakeIterator();
264 std::cout << *partialtrack << std::endl;
269 QwTrack* QwQuartzBarLight::CreateNewTrack()
271 TClonesArray &tracks = *fQwTracks;
277 void QwQuartzBarLight::AddTrack(
QwTrack* track)
279 QwTrack* newtrack = CreateNewTrack();
284 void QwQuartzBarLight::AddTrackList(
QwTrack* tracklist)
286 for (
QwTrack *track = tracklist;
287 track; track = track->next)
293 void QwQuartzBarLight::AddTrackList(
const std::vector<QwTrack*>& tracklist)
295 for (
size_t i = 0; i < tracklist.size(); i++)
297 AddTrack(tracklist[i]);
301 void QwQuartzBarLight::ClearTracks(Option_t *option)
303 fQwTracks->Clear(option);
308 void QwQuartzBarLight::ResetTracks(Option_t *option)
315 void QwQuartzBarLight::PrintTracks()
317 TIterator* iterator = fQwTracks->MakeIterator();
319 while ((track = (
QwTrack*) iterator->Next())) {
320 std::cout << *track << std::endl;
321 std::cout << *(track->fBridge) << std::endl;
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.
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.
Contains header information of a tracked event.
bool IsValid() const
Is this tree line valid?
Hit structure uniquely defining each hit.
Contains the straight part of a track in one region only.
static const double cm
Length units: base unit is mm.