Fork me on GitHub

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/RunPUPPI.cc

    r659c7b6 re921a28  
    33#include "PUPPI/RecoObj2.hh"
    44#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"
    87
    98#include "classes/DelphesClasses.h"
     
    1817
    1918using namespace std;
    20 using namespace fastjet;
    2119
    2220//------------------------------------------------------------------------------
     
    240238  fPuppi->initialize(puppiInputVector);
    241239  fPuppi->puppiWeights();
    242   std::vector<PseudoJet> puppiParticles = fPuppi->puppiParticles();
     240  std::vector<fastjet::PseudoJet> puppiParticles = fPuppi->puppiParticles();
    243241
    244242  // 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++) {
    246244    if(it->user_index() <= int(InputParticles.size())){     
    247245      candidate = static_cast<Candidate *>(InputParticles.at(it->user_index())->Clone());
Note: See TracChangeset for help on using the changeset viewer.