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