Changes in / [52315d4:e0f8f99] in git
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
external/PUPPI/PuppiAlgo.cc
r52315d4 re0f8f99 1 //#include "FWCore/ParameterSet/interface/ParameterSet.h" 2 //#include "FWCore/PythonParameterSet/interface/MakeParameterSets.h" 1 3 #include "PuppiAlgo.hh" 4 #include "external/fastjet/internal/base.hh" 2 5 #include "Math/QuantFuncMathCore.h" 3 6 #include "Math/SpecFuncMathCore.h" -
external/PUPPI/PuppiAlgo.hh
r52315d4 re0f8f99 1 #include "fastjet/PseudoJet.hh" 1 #include "external/fastjet/internal/base.hh" 2 #include "external/fastjet/PseudoJet.hh" 2 3 #include "AlgoObj.hh" 3 4 #include <vector> -
external/PUPPI/PuppiContainer.cc
r52315d4 re0f8f99 1 1 #include "PuppiContainer.hh" 2 #include "fastjet/Selector.hh" 2 #include "external/fastjet/internal/base.hh" 3 #include "external/fastjet/Selector.hh" 4 //#include "external/fastjet/FunctionOfPseudoJet.hh" 3 5 #include "Math/ProbFunc.h" 4 6 #include "TMath.h" -
external/PUPPI/PuppiContainer.hh
r52315d4 re0f8f99 1 1 #include "PuppiAlgo.hh" 2 2 #include "RecoObj2.hh" 3 #include "fastjet/PseudoJet.hh" 3 //#include "external/fastjet/internal/base.hh" 4 #include "external/fastjet/PseudoJet.hh" 4 5 #include <vector> 5 6 -
external/PUPPI/puppiCleanContainer.hh
r52315d4 re0f8f99 7 7 #include "PUPPI/puppiAlgoBin.hh" 8 8 9 #include "fastjet/internal/base.hh" 9 10 #include "fastjet/PseudoJet.hh" 10 11 #include <algorithm> -
modules/RunPUPPI.cc
r52315d4 re0f8f99 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()); -
modules/RunPUPPI.h
r52315d4 re0f8f99 3 3 4 4 #include "classes/DelphesModule.h" 5 #include "PUPPI/PuppiContainer.hh" 5 6 #include <vector> 6 7 7 8 class TObjArray; 8 9 class TIterator; 9 class PuppiContainer; 10 10 11 11 12 class RunPUPPI: public DelphesModule {
Note:
See TracChangeset
for help on using the changeset viewer.