Changes in / [aafe927:d192152] in git
- Files:
-
- 8 added
- 10 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
raafe927 rd192152 89 89 DISPLAYLIB = libDelphesDisplay.lib 90 90 91 VERSION = x.y.z91 VERSION = $(shell cat VERSION) 92 92 DISTDIR = Delphes-$(VERSION) 93 93 DISTTAR = $(DISTDIR).tar.gz … … 174 174 tmp/examples/Example1.$(ObjSuf): \ 175 175 examples/Example1.cpp \ 176 classes/DelphesClasses.h \ 177 external/ExRootAnalysis/ExRootResult.h \ 178 external/ExRootAnalysis/ExRootTreeBranch.h \ 179 external/ExRootAnalysis/ExRootTreeReader.h \ 180 external/ExRootAnalysis/ExRootTreeWriter.h \ 181 external/ExRootAnalysis/ExRootUtilities.h 182 DelphesValidation$(ExeSuf): \ 183 tmp/validation/DelphesValidation.$(ObjSuf) 184 185 tmp/validation/DelphesValidation.$(ObjSuf): \ 186 validation/DelphesValidation.cpp \ 176 187 classes/DelphesClasses.h \ 177 188 external/ExRootAnalysis/ExRootResult.h \ … … 188 199 stdhep2pileup$(ExeSuf) \ 189 200 CaloGrid$(ExeSuf) \ 190 Example1$(ExeSuf) 201 Example1$(ExeSuf) \ 202 DelphesValidation$(ExeSuf) 191 203 192 204 EXECUTABLE_OBJ += \ … … 198 210 tmp/converters/stdhep2pileup.$(ObjSuf) \ 199 211 tmp/examples/CaloGrid.$(ObjSuf) \ 200 tmp/examples/Example1.$(ObjSuf) 212 tmp/examples/Example1.$(ObjSuf) \ 213 tmp/validation/DelphesValidation.$(ObjSuf) 201 214 202 215 DelphesHepMC$(ExeSuf): \ … … 2421 2434 @echo ">> Building $(DISTTAR)" 2422 2435 @mkdir -p $(DISTDIR) 2423 @cp -a AUTHORS CHANGELOG CMakeLists.txt COPYING DelphesEnv.sh LICENSE NOTICE README README_4LHCb Makefile MinBias.pileup configure cards classes converters display doc examples external modules python readers validation $(DISTDIR)2436 @cp -a AUTHORS CHANGELOG CMakeLists.txt COPYING DelphesEnv.sh LICENSE NOTICE README README_4LHCb VERSION Makefile MinBias.pileup configure cards classes converters display doc examples external modules python readers validation $(DISTDIR) 2424 2437 @find $(DISTDIR) -depth -name .\* -exec rm -rf {} \; 2425 2438 @tar -czf $(DISTTAR) $(DISTDIR) -
doc/genMakefile.tcl
raafe927 rd192152 282 282 DISPLAYLIB = libDelphesDisplay.lib 283 283 284 VERSION = x.y.z284 VERSION = $(shell cat VERSION) 285 285 DISTDIR = Delphes-$(VERSION) 286 286 DISTTAR = $(DISTDIR).tar.gz … … 290 290 } 291 291 292 executableDeps {converters/*.cpp} {examples/*.cpp} 292 executableDeps {converters/*.cpp} {examples/*.cpp} {validation/*.cpp} 293 293 294 294 executableDeps {readers/DelphesHepMC.cpp} {readers/DelphesLHEF.cpp} {readers/DelphesSTDHEP.cpp} {readers/DelphesROOT.cpp} … … 434 434 @echo ">> Building $(DISTTAR)" 435 435 @mkdir -p $(DISTDIR) 436 @cp -a AUTHORS CHANGELOG CMakeLists.txt COPYING DelphesEnv.sh LICENSE NOTICE README README_4LHCb Makefile MinBias.pileup configure cards classes converters display doc examples external modules python readers validation $(DISTDIR)436 @cp -a AUTHORS CHANGELOG CMakeLists.txt COPYING DelphesEnv.sh LICENSE NOTICE README README_4LHCb VERSION Makefile MinBias.pileup configure cards classes converters display doc examples external modules python readers validation $(DISTDIR) 437 437 @find $(DISTDIR) -depth -name .\* -exec rm -rf {} \; 438 438 @tar -czf $(DISTTAR) $(DISTDIR) -
modules/FastJetFinder.cc
raafe927 rd192152 489 489 fastjet::Filter trimmer(fastjet::JetDefinition(fastjet::kt_algorithm, fRTrim), fastjet::SelectorPtFractionMin(fPtFracTrim)); 490 490 fastjet::PseudoJet trimmed_jet = trimmer(*itOutputList); 491 491 492 trimmed_jet = join(trimmed_jet.constituents()); 493 492 494 candidate->TrimmedP4[0].SetPtEtaPhiM(trimmed_jet.pt(), trimmed_jet.eta(), trimmed_jet.phi(), trimmed_jet.m()); 493 495 -
readers/DelphesPythia8.cpp
raafe927 rd192152 296 296 297 297 // jet matching 298 #if PYTHIA_VERSION_INTEGER < 8300299 298 matching = combined->getHook(*pythia); 300 299 if(!matching) … … 303 302 } 304 303 pythia->setUserHooksPtr(matching); 305 #endif306 304 307 305 if(pythia == NULL) -
validation/DelphesValidation.cpp
raafe927 rd192152 32 32 #include "TGraph.h" 33 33 #include "TGraphErrors.h" 34 #include "TF1.h"35 34 #include "TH1.h" 36 35 #include "TH2.h" -
validation/validation.sh
raafe927 rd192152 38 38 outputrootdir=report_${cardbase%.*}/root 39 39 cardlabel=${cardbase%.*} 40 version= x.y.z40 version=$(cat VERSION) 41 41 outpdf=$mainoutputdir/${output%.*}.pdf 42 42 cardsdir=validation/cards
Note:
See TracChangeset
for help on using the changeset viewer.