Changeset 8a11cdc in git
- Timestamp:
- Feb 12, 2019, 2:59:49 PM (6 years ago)
- Branches:
- ImprovedOutputFile, Timing, llp, master
- Children:
- 769f65b
- Parents:
- 70bb4cb (diff), dd64cff (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:
- Pavel Demin <pavel-demin@…> (02/12/19 14:59:49)
- git-committer:
- GitHub <noreply@…> (02/12/19 14:59:49)
- Files:
-
- 5 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r70bb4cb r8a11cdc 404 404 modules/ParticlePropagator.h \ 405 405 modules/Efficiency.h \ 406 modules/TrackEfficiency.h \ 406 407 modules/IdentificationMap.h \ 407 408 modules/EnergySmearing.h \ … … 522 523 classes/DelphesStream.h \ 523 524 external/ExRootAnalysis/ExRootTreeBranch.h 525 tmp/classes/DelphesLongFormula.$(ObjSuf): \ 526 classes/DelphesLongFormula.$(SrcSuf) \ 527 classes/DelphesLongFormula.h 524 528 tmp/classes/DelphesModule.$(ObjSuf): \ 525 529 classes/DelphesModule.$(SrcSuf) \ … … 984 988 external/ExRootAnalysis/ExRootFilter.h \ 985 989 external/ExRootAnalysis/ExRootClassifier.h 990 tmp/modules/TrackEfficiency.$(ObjSuf): \ 991 modules/TrackEfficiency.$(SrcSuf) \ 992 modules/TrackEfficiency.h \ 993 classes/DelphesClasses.h \ 994 classes/DelphesFactory.h \ 995 classes/DelphesLongFormula.h \ 996 external/ExRootAnalysis/ExRootResult.h \ 997 external/ExRootAnalysis/ExRootFilter.h \ 998 external/ExRootAnalysis/ExRootClassifier.h 986 999 tmp/modules/TrackPileUpSubtractor.$(ObjSuf): \ 987 1000 modules/TrackPileUpSubtractor.$(SrcSuf) \ … … 1067 1080 tmp/classes/DelphesHepMCReader.$(ObjSuf) \ 1068 1081 tmp/classes/DelphesLHEFReader.$(ObjSuf) \ 1082 tmp/classes/DelphesLongFormula.$(ObjSuf) \ 1069 1083 tmp/classes/DelphesModule.$(ObjSuf) \ 1070 1084 tmp/classes/DelphesPileUpReader.$(ObjSuf) \ … … 1148 1162 tmp/modules/TrackCountingBTagging.$(ObjSuf) \ 1149 1163 tmp/modules/TrackCountingTauTagging.$(ObjSuf) \ 1164 tmp/modules/TrackEfficiency.$(ObjSuf) \ 1150 1165 tmp/modules/TrackPileUpSubtractor.$(ObjSuf) \ 1151 1166 tmp/modules/TrackSmearing.$(ObjSuf) \ … … 1779 1794 tmp/external/tcl/tclVar.$(ObjSuf) 1780 1795 1796 modules/TrackEfficiency.h: \ 1797 classes/DelphesModule.h 1798 @touch $@ 1799 1781 1800 modules/DenseTrackFilter.h: \ 1782 1801 classes/DelphesModule.h -
classes/DelphesClasses.h
r70bb4cb r8a11cdc 315 315 Float_t SumPt; // isolation variable 316 316 317 Float_t D0; // track transverse impact parameter 318 Float_t DZ; // track longitudinal impact parameter 319 Float_t ErrorD0; // track transverse impact parameter error 320 Float_t ErrorDZ; // track longitudinal impact parameter error 321 317 322 static CompBase *fgCompare; //! 318 323 const CompBase *GetCompare() const { return fgCompare; } … … 345 350 Float_t SumPtChargedPU; // isolation variable 346 351 Float_t SumPt; // isolation variable 352 353 Float_t D0; // track transverse impact parameter 354 Float_t DZ; // track longitudinal impact parameter 355 Float_t ErrorD0; // track transverse impact parameter error 356 Float_t ErrorDZ; // track longitudinal impact parameter error 347 357 348 358 static CompBase *fgCompare; //! -
modules/ModulesLinkDef.h
r70bb4cb r8a11cdc 32 32 #include "modules/ParticlePropagator.h" 33 33 #include "modules/Efficiency.h" 34 #include "modules/TrackEfficiency.h" 34 35 #include "modules/IdentificationMap.h" 35 36 #include "modules/EnergySmearing.h" … … 85 86 #pragma link C++ class ParticlePropagator+; 86 87 #pragma link C++ class Efficiency+; 88 #pragma link C++ class TrackEfficiency+; 87 89 #pragma link C++ class IdentificationMap+; 88 90 #pragma link C++ class EnergySmearing+; -
modules/TreeWriter.cc
r70bb4cb r8a11cdc 528 528 entry->T = position.T()*1.0E-3/c_light; 529 529 530 // displacement 531 entry->D0 = candidate->D0; 532 entry->ErrorD0 = candidate->ErrorD0; 533 entry->DZ = candidate->DZ; 534 entry->ErrorDZ = candidate->ErrorDZ; 535 530 536 // Isolation variables 531 532 537 entry->IsolationVar = candidate->IsolationVar; 533 538 entry->IsolationVarRhoCorr = candidate->IsolationVarRhoCorr ; … … 582 587 583 588 entry->T = position.T()*1.0E-3/c_light; 589 590 591 // displacement 592 entry->D0 = candidate->D0; 593 entry->ErrorD0 = candidate->ErrorD0; 594 entry->DZ = candidate->DZ; 595 entry->ErrorDZ = candidate->ErrorDZ; 584 596 585 597 // Isolation variables
Note:
See TracChangeset
for help on using the changeset viewer.