Changes in / [9ad08ca:332025f] in git
- Files:
-
- 2 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cards/CMS_PhaseII/CMS_PhaseII_200PU.tcl
r9ad08ca r332025f 98 98 99 99 # 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 102 103 # average expected pile up 103 104 set MeanPileUp 200 -
external/PUPPI/PuppiAlgo.cc
r9ad08ca r332025f 19 19 std::vector<AlgoSubObj> lAlgos = iAlgo.subAlgos; 20 20 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; 22 22 for(unsigned int i0 = 0; i0 < lAlgos.size(); i0++) { 23 23 int pAlgoId = lAlgos[i0].metricId; … … 28 28 double pRMSPtMin = lAlgos[i0].rmsPtMin; 29 29 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; 31 31 fAlgoId .push_back(pAlgoId); 32 32 fCharged .push_back(pCharged); -
readers/DelphesPythia8.cpp
r9ad08ca r332025f 25 25 26 26 #include "Pythia.h" 27 #include "Pythia8Plugins/CombineMatchingInput.h"28 27 29 28 #include "TROOT.h" … … 225 224 226 225 Pythia8::Pythia *pythia = 0; 227 228 // for matching229 Pythia8::CombineMatchingInput *combined = 0;230 Pythia8::UserHooks* matching = 0;231 226 232 227 if(argc != 4) … … 275 270 // Initialize Pythia 276 271 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; 286 274 287 275 if(pythia == NULL)
Note:
See TracChangeset
for help on using the changeset viewer.