Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
#include "LCAscHepRdr.h"
#include "EVENT/MCParticle.h"
#include "IMPL/MCParticleImpl.h"
#include "lcio.h"
#include "EVENT/LCIO.h"
#include <sstream>
#include "Exceptions.h"
using namespace EVENT ;
using namespace IMPL ;
//
// the time being we leave it as #define, to avoid to depend
// on Mokka business if it could be part of lcio package
//
#define HEPEvt 1
#define hepevt 2
namespace UTIL{
LCAscHepRdr::LCAscHepRdr(const char* evfile, int fileFormat)
: theFileFormat(fileFormat)
{
//
// Adapt the Geant4 G4HEPEvtInterface code
//
switch(fileFormat)
{
case HEPEvt :
case hepevt :
inputFile.open(evfile);
if (!inputFile)
{
std::stringstream description ;
description << "LCAscHepRdr, no ascii Hep file found: " << evfile << std::ends ;
throw IO::IOException( description.str() );
}
break;
default :
std::stringstream description ;
description << "LCAscHepRdr, bad suffix on file name: " << evfile << std::ends ;
throw IO::IOException( description.str() );
}
}
LCAscHepRdr::~LCAscHepRdr(){}
//
// Read an event and return a LCCollectionVec of MCParticles
//
IMPL::LCCollectionVec * LCAscHepRdr::readEvent()
{
IMPL::LCCollectionVec * mcVec = nullptr;
double c_light = 299.792;// mm/ns
//
// Read the event, check for errors
//
int NHEP; // number of entries
int NOUT ; // number of outgoing particles
int BRE ; // beam remnants
double WEIGHT ; // weight
inputFile >> NHEP >> NOUT >> BRE >> WEIGHT;
if( inputFile.eof() )
{
//
// End of File :: ??? Exception ???
// -> FG: EOF is not an exception as it happens for every file at the end !
//
return mcVec;
}
//
// Create a Collection Vector
//
mcVec = new IMPL::LCCollectionVec(LCIO::MCPARTICLE);
MCParticleImpl* p;
MCParticleImpl* d;
//
// Loop over particles
//
int ISTHEP; // status code
int IDHEP; // PDG code
int JMOHEP1; // first mother
int JMOHEP2; // last mother
int JDAHEP1; // first daughter
int JDAHEP2; // last daughter
double PHEP1; // px in GeV/c
double PHEP2; // py in GeV/c
double PHEP3; // pz in GeV/c
double PHEP4; // energy in GeV
double PHEP5; // mass in GeV/c**2
double VHEP1; // x vertex position in mm
double VHEP2; // y vertex position in mm
double VHEP3; // z vertex position in mm
double VHEP4; // production time in mm/c
std::vector<int> *daughter1 = new std::vector<int> ();
std::vector<int> *daughter2 = new std::vector<int> ();
for( int IHEP=0; IHEP<NHEP; IHEP++ )
{
//if ( theFileFormat == HEPEvt)
if ( false)
inputFile >> ISTHEP >> IDHEP >> JDAHEP1 >> JDAHEP2
>> PHEP1 >> PHEP2 >> PHEP3 >> PHEP5;
else
inputFile >> ISTHEP >> IDHEP
>> JMOHEP1 >> JMOHEP2
>> JDAHEP1 >> JDAHEP2
>> PHEP1 >> PHEP2 >> PHEP3
>> PHEP4 >> PHEP5
>> VHEP1 >> VHEP2 >> VHEP3
>> VHEP4;
if(inputFile.eof())
return nullptr;
//
// Create a MCParticle and fill it from stdhep info
//
MCParticleImpl* mcp = new MCParticleImpl();
//
// PDGID
//
mcp->setPDG(IDHEP);
//
// Momentum vector
//
float p0[3] = {PHEP1,PHEP2,PHEP3};
mcp->setMomentum(p0);
//
// Mass
//
mcp->setMass(PHEP5);
//
// Vertex
// (missing information in HEPEvt files)
double v0[3] = {0.,0.,0.};
mcp->setVertex(v0);
//
// Generator status
//
mcp->setGeneratorStatus(ISTHEP);
//
// Simulator status 0 until simulator acts on it
//
mcp->setSimulatorStatus(0);
//
// Creation time (note the units)
// (No information in HEPEvt files)
mcp->setTime(0./c_light);
//
// Add the particle to the collection vector
//
mcVec->push_back(mcp);
//
// Keep daughters information for later
//
daughter1->push_back(JDAHEP1);
daughter2->push_back(JDAHEP2);
// fg: comment out the mother relationships altogether ....
// //
// // Add the parent information. The implicit assumption here is that
// // no particle is read in before its parents.
// //
// int fp = _reader->mother1(IHEP) - 1;
// int lp = _reader->mother2(IHEP) - 1;
// //
// // If both first parent and second parent > 0, and second parent >
// // first parent, assume a range
// //
// if( (fp > -1) && (lp > -1) )
// {
// if(lp >= fp)
// {
// for(int ip=fp;ip<lp+1;ip++)
// {
// p = dynamic_cast<MCParticleImpl*>
// (mcVec->getElementAt(ip));
// mcp->addParent(p);
// }
// }
// //
// // If first parent < second parent, assume 2 discreet parents
// //
// else
// {
// p = dynamic_cast<MCParticleImpl*>
// (mcVec->getElementAt(fp));
// mcp->addParent(p);
// p = dynamic_cast<MCParticleImpl*>
// (mcVec->getElementAt(lp));
// mcp->addParent(p);
// }
// }
// //
// // Only 1 parent > 0, set it
// //
// else if(fp > -1)
// {
// p = dynamic_cast<MCParticleImpl*>
// (mcVec->getElementAt(fp));
// mcp->addParent(p);
// }
// else if(lp > -1)
// {
// p = dynamic_cast<MCParticleImpl*>
// (mcVec->getElementAt(lp));
// mcp->addParent(p);
// }
}// End loop over particles
//
// Now make a second loop over the particles, checking the daughter
// information. This is not always consistent with parent
// information, and this utility assumes all parents listed are
// parents and all daughters listed are daughters
//
for( int IHEP=0; IHEP<NHEP; IHEP++ )
{
//
// Get the MCParticle
//
MCParticleImpl* mcp =
dynamic_cast<MCParticleImpl*>
(mcVec->getElementAt(IHEP));
//
// Get the daughter information, discarding extra information
// sometimes stored in daughter variables.
//
int fd = daughter1->operator[](IHEP) - 1;
int ld = daughter2->operator[](IHEP) - 1;
//
// As with the parents, look for range, 2 discreet or 1 discreet
// daughter.
//
if( (fd > -1) && (ld > -1) )
{
if(ld >= fd)
{
for(int id=fd;id<ld+1;id++)
{
//
// Get the daughter, and see if it already lists this particle as
// a parent.
//
d = dynamic_cast<MCParticleImpl*>
(mcVec->getElementAt(id));
int np = d->getParents().size();
bool gotit = false;
for(int ip=0;ip < np;ip++)
{
p = dynamic_cast<MCParticleImpl*>
(d->getParents()[ip]);
if(p == mcp)gotit = true;
}
//
// If not already listed, add this particle as a parent
//
if(!gotit)d->addParent(mcp);
}
}
//
// Same logic, discreet cases
//
else
{
d = dynamic_cast<MCParticleImpl*>
(mcVec->getElementAt(fd));
int np = d->getParents().size();
bool gotit = false;
for(int ip=0;ip < np;ip++)
{
p = dynamic_cast<MCParticleImpl*>
(d->getParents()[ip]);
if(p == mcp)gotit = true;
}
if(!gotit)d->addParent(mcp);
d = dynamic_cast<MCParticleImpl*>
(mcVec->getElementAt(ld));
np = d->getParents().size();
gotit = false;
for(int ip=0;ip < np;ip++)
{
p = dynamic_cast<MCParticleImpl*>
(d->getParents()[ip]);
if(p == mcp)gotit = true;
}
if(!gotit)d->addParent(mcp);
}
}
else if(fd > -1)
{
d = dynamic_cast<MCParticleImpl*>
(mcVec->getElementAt(fd));
int np = d->getParents().size();
bool gotit = false;
for(int ip=0;ip < np;ip++)
{
p = dynamic_cast<MCParticleImpl*>
(d->getParents()[ip]);
if(p == mcp)gotit = true;
}
if(!gotit)d->addParent(mcp);
}
else if(ld > -1)
{
d = dynamic_cast<MCParticleImpl*>
(mcVec->getElementAt(ld));
int np = d->getParents().size();
bool gotit = false;
for(int ip=0;ip < np;ip++)
{
p = dynamic_cast<MCParticleImpl*>
(d->getParents()[ip]);
if(p == mcp)gotit = true;
}
if(!gotit)d->addParent(mcp);
}
}// End second loop over particles
//
// Return the collection
//
return mcVec;
}
} // namespace UTIL