Changeset aafe927 in git
- Timestamp:
- Aug 28, 2020, 5:29:36 PM (4 years ago)
- Branches:
- master
- Children:
- f0f1443
- Parents:
- d192152 (diff), a643a7f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Aleksander Filip Żarnecki <zarnecki@…> (08/28/20 17:29:36)
- git-committer:
- GitHub <noreply@…> (08/28/20 17:29:36)
- Files:
-
- 10 added
- 8 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
rd192152 raafe927 89 89 DISPLAYLIB = libDelphesDisplay.lib 90 90 91 VERSION = $(shell cat VERSION)91 VERSION = x.y.z 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.h182 DelphesValidation$(ExeSuf): \183 tmp/validation/DelphesValidation.$(ObjSuf)184 185 tmp/validation/DelphesValidation.$(ObjSuf): \186 validation/DelphesValidation.cpp \187 176 classes/DelphesClasses.h \ 188 177 external/ExRootAnalysis/ExRootResult.h \ … … 199 188 stdhep2pileup$(ExeSuf) \ 200 189 CaloGrid$(ExeSuf) \ 201 Example1$(ExeSuf) \ 202 DelphesValidation$(ExeSuf) 190 Example1$(ExeSuf) 203 191 204 192 EXECUTABLE_OBJ += \ … … 210 198 tmp/converters/stdhep2pileup.$(ObjSuf) \ 211 199 tmp/examples/CaloGrid.$(ObjSuf) \ 212 tmp/examples/Example1.$(ObjSuf) \ 213 tmp/validation/DelphesValidation.$(ObjSuf) 200 tmp/examples/Example1.$(ObjSuf) 214 201 215 202 DelphesHepMC$(ExeSuf): \ … … 2434 2421 @echo ">> Building $(DISTTAR)" 2435 2422 @mkdir -p $(DISTDIR) 2436 @cp -a AUTHORS CHANGELOG CMakeLists.txt COPYING DelphesEnv.sh LICENSE NOTICE README README_4LHCb VERSIONMakefile MinBias.pileup configure cards classes converters display doc examples external modules python readers validation $(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) 2437 2424 @find $(DISTDIR) -depth -name .\* -exec rm -rf {} \; 2438 2425 @tar -czf $(DISTTAR) $(DISTDIR) -
doc/genMakefile.tcl
rd192152 raafe927 282 282 DISPLAYLIB = libDelphesDisplay.lib 283 283 284 VERSION = $(shell cat VERSION)284 VERSION = x.y.z 285 285 DISTDIR = Delphes-$(VERSION) 286 286 DISTTAR = $(DISTDIR).tar.gz … … 290 290 } 291 291 292 executableDeps {converters/*.cpp} {examples/*.cpp} {validation/*.cpp}292 executableDeps {converters/*.cpp} {examples/*.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 VERSIONMakefile 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 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
rd192152 raafe927 489 489 fastjet::Filter trimmer(fastjet::JetDefinition(fastjet::kt_algorithm, fRTrim), fastjet::SelectorPtFractionMin(fPtFracTrim)); 490 490 fastjet::PseudoJet trimmed_jet = trimmer(*itOutputList); 491 492 trimmed_jet = join(trimmed_jet.constituents()); 493 491 494 492 candidate->TrimmedP4[0].SetPtEtaPhiM(trimmed_jet.pt(), trimmed_jet.eta(), trimmed_jet.phi(), trimmed_jet.m()); 495 493 -
readers/DelphesPythia8.cpp
rd192152 raafe927 296 296 297 297 // jet matching 298 #if PYTHIA_VERSION_INTEGER < 8300 298 299 matching = combined->getHook(*pythia); 299 300 if(!matching) … … 302 303 } 303 304 pythia->setUserHooksPtr(matching); 305 #endif 304 306 305 307 if(pythia == NULL) -
validation/DelphesValidation.cpp
rd192152 raafe927 32 32 #include "TGraph.h" 33 33 #include "TGraphErrors.h" 34 #include "TF1.h" 34 35 #include "TH1.h" 35 36 #include "TH2.h" -
validation/validation.sh
rd192152 raafe927 38 38 outputrootdir=report_${cardbase%.*}/root 39 39 cardlabel=${cardbase%.*} 40 version= $(cat VERSION)40 version=x.y.z 41 41 outpdf=$mainoutputdir/${output%.*}.pdf 42 42 cardsdir=validation/cards
Note:
See TracChangeset
for help on using the changeset viewer.