Changeset 5c402f7 in git for modules/RunPUPPI.cc
- Timestamp:
- Jun 24, 2016, 10:14:21 AM (8 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 2a3eb22
- Parents:
- 425cd17 (diff), b6e6d36 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/RunPUPPI.cc
r425cd17 r5c402f7 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.