Changes in modules/RunPUPPI.cc [e921a28:659c7b6] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/RunPUPPI.cc
re921a28 r659c7b6 3 3 #include "PUPPI/RecoObj2.hh" 4 4 #include "PUPPI/AlgoObj.hh" 5 //#include "PUPPI/puppiParticle.hh" 6 //#include "PUPPI/puppiAlgoBin.hh" 5 #include "PUPPI/PuppiContainer.hh" 6 7 #include "fastjet/PseudoJet.hh" 7 8 8 9 #include "classes/DelphesClasses.h" … … 17 18 18 19 using namespace std; 20 using namespace fastjet; 19 21 20 22 //------------------------------------------------------------------------------ … … 238 240 fPuppi->initialize(puppiInputVector); 239 241 fPuppi->puppiWeights(); 240 std::vector< fastjet::PseudoJet> puppiParticles = fPuppi->puppiParticles();242 std::vector<PseudoJet> puppiParticles = fPuppi->puppiParticles(); 241 243 242 244 // Loop on final particles 243 for (std::vector< fastjet::PseudoJet>::iterator it = puppiParticles.begin() ; it != puppiParticles.end() ; it++) {245 for (std::vector<PseudoJet>::iterator it = puppiParticles.begin() ; it != puppiParticles.end() ; it++) { 244 246 if(it->user_index() <= int(InputParticles.size())){ 245 247 candidate = static_cast<Candidate *>(InputParticles.at(it->user_index())->Clone());
Note:
See TracChangeset
for help on using the changeset viewer.