Fork me on GitHub

Changes in / [9ad08ca:332025f] in git


Ignore:
Files:
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • cards/CMS_PhaseII/CMS_PhaseII_200PU.tcl

    r9ad08ca r332025f  
    9898
    9999  # pre-generated minbias input file
    100   set PileUpFile ../eos/cms/store/group/upgrade/delphes/PhaseII/MinBias_100k.pileup
    101  
     100  #set PileUpFile ../eos/cms/store/group/upgrade/delphes/PhaseII/MinBias_100k.pileup
     101  set PileUpFile MinBias.pileup
     102
    102103  # average expected pile up
    103104  set MeanPileUp 200
  • external/PUPPI/PuppiAlgo.cc

    r9ad08ca r332025f  
    1919  std::vector<AlgoSubObj> lAlgos = iAlgo.subAlgos;
    2020  fNAlgos = lAlgos.size();
    21   //std::cout << "==> "  << fEtaMin << " - " << fEtaMax << " - " << fPtMin  << " - " << fNeutralPtMin  << " - " << fNeutralPtSlope  << " - " << fRMSEtaSF  << " - " << std::endl;
     21  std::cout << "==> "  << fEtaMin << " - " << fEtaMax << " - " << fPtMin  << " - " << fNeutralPtMin  << " - " << fNeutralPtSlope  << " - " << fRMSEtaSF  << " - " << std::endl;
    2222  for(unsigned int i0 = 0; i0 < lAlgos.size(); i0++)  {
    2323    int    pAlgoId      = lAlgos[i0].metricId;
     
    2828    double pRMSPtMin    = lAlgos[i0].rmsPtMin;
    2929    double pRMSSF       = lAlgos[i0].rmsScaleFactor;
    30     //std::cout << "Algo==> " << i0 << " - " << pAlgoId << " - " << pCharged << " - " << pWeight0 << " - " << pComb << " - " << pConeSize << " - " << pRMSPtMin << " - " << std::endl;
     30    std::cout << "Algo==> " << i0 << " - " << pAlgoId << " - " << pCharged << " - " << pWeight0 << " - " << pComb << " - " << pConeSize << " - " << pRMSPtMin << " - " << std::endl;
    3131    fAlgoId        .push_back(pAlgoId);
    3232    fCharged       .push_back(pCharged);
  • readers/DelphesPythia8.cpp

    r9ad08ca r332025f  
    2525
    2626#include "Pythia.h"
    27 #include "Pythia8Plugins/CombineMatchingInput.h"
    2827
    2928#include "TROOT.h"
     
    225224
    226225  Pythia8::Pythia *pythia = 0;
    227  
    228   // for matching
    229   Pythia8::CombineMatchingInput *combined = 0;
    230   Pythia8::UserHooks* matching = 0;
    231226
    232227  if(argc != 4)
     
    275270    // Initialize Pythia
    276271    pythia = new Pythia8::Pythia;
    277  
    278     // jet matching
    279     matching = combined->getHook(*pythia);
    280     if (!matching)
    281     {
    282       throw runtime_error("can't do matching");
    283     }
    284     pythia->setUserHooksPtr(matching);
    285  
     272    //Pythia8::Event& event = pythia->event;
     273    //Pythia8::ParticleData& pdt = pythia->particleData;
    286274
    287275    if(pythia == NULL)
Note: See TracChangeset for help on using the changeset viewer.