- Timestamp:
- Oct 25, 2014, 7:19:00 PM (10 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- d8b1858
- Parents:
- 3a73e6d
- Location:
- readers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
readers/DelphesProMC.cpp
r3a73e6d ra85a257 47 47 #include "ExRootAnalysis/ExRootProgressBar.h" 48 48 49 #include "ProMC /ProMC.pb.h"50 #include "ProMC /ProMCBook.h"51 #include "ProMC /ProMCHeader.pb.h"49 #include "ProMC.pb.h" 50 #include "ProMCBook.h" 51 #include "ProMCHeader.pb.h" 52 52 53 53 using namespace std; … … 55 55 //--------------------------------------------------------------------------- 56 56 57 void ConvertInput(ProMCEvent &event, ExRootTreeBranch *branch, DelphesFactory *factory, 58 TObjArray *allParticleOutputArray, TObjArray *stableParticleOutputArray, TObjArray *partonOutputArray, 59 TStopwatch *readStopWatch, TStopwatch *procStopWatch) 57 void ConvertInput(ProMCEvent &event, double momentumUnit, double positionUnit, 58 ExRootTreeBranch *branch, DelphesFactory *factory, 59 TObjArray *allParticleOutputArray, TObjArray *stableParticleOutputArray, 60 TObjArray *partonOutputArray, TStopwatch *readStopWatch, TStopwatch *procStopWatch) 60 61 { 61 62 Int_t i; … … 107 108 pid = mutableParticles->pdg_id(i); 108 109 status = mutableParticles->status(i); 109 px = mutableParticles->px(i); py = mutableParticles->py(i); pz = mutableParticles->pz(i); mass = mutableParticles->mass(i); 110 x = mutableParticles->x(i); y = mutableParticles->y(i); z = mutableParticles->z(i); t = mutableParticles->t(i); 110 111 px = mutableParticles->px(i)/momentumUnit; 112 py = mutableParticles->py(i)/momentumUnit; 113 pz = mutableParticles->pz(i)/momentumUnit; 114 mass = mutableParticles->mass(i)/momentumUnit; 115 x = mutableParticles->x(i)/positionUnit; 116 y = mutableParticles->y(i)/positionUnit; 117 z = mutableParticles->z(i)/positionUnit; 118 t = mutableParticles->t(i)/positionUnit; 111 119 112 120 candidate = factory->NewCandidate(); … … 172 180 Int_t i; 173 181 Long64_t eventCounter, numberOfEvents; 182 double momentumUnit = 1.0, positionUnit = 1.0; 174 183 175 184 if(argc < 4) … … 224 233 inputFile = new ProMCBook(argv[i], "r"); 225 234 235 ProMCHeader header = inputFile->getHeader(); 236 237 momentumUnit = static_cast<double>(header.momentumunit()); 238 positionUnit = static_cast<double>(header.lengthunit()); 239 240 241 226 242 if(inputFile == NULL) 227 243 { … … 248 264 249 265 procStopWatch.Start(); 250 ConvertInput(event, branchEvent, factory, 251 allParticleOutputArray, stableParticleOutputArray, partonOutputArray, 252 &readStopWatch, &procStopWatch); 266 ConvertInput(event, momentumUnit, positionUnit, 267 branchEvent, factory, 268 allParticleOutputArray, stableParticleOutputArray, 269 partonOutputArray, &readStopWatch, &procStopWatch); 253 270 modularDelphes->ProcessTask(); 254 271 procStopWatch.Stop(); -
readers/DelphesProMC.py
r3a73e6d ra85a257 134 134 ################################################################################ 135 135 136 if len(sys.argv) < 2:136 if len(sys.argv) < 4: 137 137 print " Usage: DelphesProMC.py config_file output_file input_file(s)" 138 138 sys.exit(1)
Note:
See TracChangeset
for help on using the changeset viewer.