Changeset 5d2481f in git
- Timestamp:
- Jun 29, 2015, 5:45:49 PM (9 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 839deb7
- Parents:
- 1fd8862
- Files:
-
- 4 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r1fd8862 r5d2481f 309 309 modules/Delphes.h \ 310 310 modules/AngularSmearing.h \ 311 modules/PhotonConversions.h \ 311 312 modules/ParticlePropagator.h \ 312 313 modules/Efficiency.h \ … … 390 391 classes/DelphesFactory.h \ 391 392 classes/SortableObject.h 393 tmp/classes/DelphesCylindricalFormula.$(ObjSuf): \ 394 classes/DelphesCylindricalFormula.$(SrcSuf) \ 395 classes/DelphesCylindricalFormula.h 392 396 tmp/classes/DelphesFactory.$(ObjSuf): \ 393 397 classes/DelphesFactory.$(SrcSuf) \ … … 721 725 external/ExRootAnalysis/ExRootFilter.h \ 722 726 external/ExRootAnalysis/ExRootClassifier.h 727 tmp/modules/PhotonConversions.$(ObjSuf): \ 728 modules/PhotonConversions.$(SrcSuf) \ 729 modules/PhotonConversions.h \ 730 classes/DelphesClasses.h \ 731 classes/DelphesFactory.h \ 732 classes/DelphesCylindricalFormula.h \ 733 external/ExRootAnalysis/ExRootResult.h \ 734 external/ExRootAnalysis/ExRootFilter.h \ 735 external/ExRootAnalysis/ExRootClassifier.h 723 736 tmp/modules/PileUpJetID.$(ObjSuf): \ 724 737 modules/PileUpJetID.$(SrcSuf) \ … … 848 861 DELPHES_OBJ += \ 849 862 tmp/classes/DelphesClasses.$(ObjSuf) \ 863 tmp/classes/DelphesCylindricalFormula.$(ObjSuf) \ 850 864 tmp/classes/DelphesFactory.$(ObjSuf) \ 851 865 tmp/classes/DelphesFormula.$(ObjSuf) \ … … 916 930 tmp/modules/ParticlePropagator.$(ObjSuf) \ 917 931 tmp/modules/PdgCodeFilter.$(ObjSuf) \ 932 tmp/modules/PhotonConversions.$(ObjSuf) \ 918 933 tmp/modules/PileUpJetID.$(ObjSuf) \ 919 934 tmp/modules/PileUpMerger.$(ObjSuf) \ … … 1805 1820 @touch $@ 1806 1821 1822 modules/PhotonConversions.h: \ 1823 classes/DelphesModule.h 1824 @touch $@ 1825 1807 1826 external/fastjet/ClusterSequenceVoronoiArea.hh: \ 1808 1827 external/fastjet/PseudoJet.hh \ -
classes/DelphesClasses.cc
r1fd8862 r5d2481f 120 120 PID(0), Status(0), M1(-1), M2(-1), D1(-1), D2(-1), 121 121 Charge(0), Mass(0.0), 122 IsPU(0), IsRecoPU(0), IsConstituent(0), 122 IsPU(0), IsRecoPU(0), IsConstituent(0), IsFromConversion(0), 123 123 Flavor(0), FlavorAlgo(0), FlavorPhys(0), 124 124 BTag(0), BTagAlgo(0), BTagPhys(0), … … 243 243 object.IsPU = IsPU; 244 244 object.IsConstituent = IsConstituent; 245 object.IsFromConversion = IsFromConversion; 245 246 object.Flavor = Flavor; 246 247 object.FlavorAlgo = FlavorAlgo; … … 343 344 IsPU = 0; 344 345 IsConstituent = 0; 346 IsFromConversion = 0; 345 347 Flavor = 0; 346 348 FlavorAlgo = 0; -
classes/DelphesClasses.h
r1fd8862 r5d2481f 506 506 507 507 Int_t IsConstituent; 508 508 509 Int_t IsFromConversion; 510 509 511 UInt_t Flavor; 510 512 UInt_t FlavorAlgo; -
modules/ModulesLinkDef.h
r1fd8862 r5d2481f 29 29 30 30 #include "modules/AngularSmearing.h" 31 #include "modules/PhotonConversions.h" 31 32 #include "modules/ParticlePropagator.h" 32 33 #include "modules/Efficiency.h" … … 71 72 72 73 #pragma link C++ class AngularSmearing+; 74 #pragma link C++ class PhotonConversions+; 73 75 #pragma link C++ class ParticlePropagator+; 74 76 #pragma link C++ class Efficiency+;
Note:
See TracChangeset
for help on using the changeset viewer.