Changeset 15 in svn
- Timestamp:
- Nov 6, 2008, 4:44:48 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Delphes.cpp
r11 r15 216 216 input_particles.clear(); 217 217 TSimpleArray<TRootGenParticle> NFCentralQ; 218 218 inclusive_jets.clear(); 219 sorted_jets.clear(); 219 220 220 221 // Loop over all particles in event … … 471 472 472 473 // sort jets into increasing pt 473 sorted_ by_pt(inclusive_jets);474 sorted_jets = sorted_by_pt(inclusive_jets); 474 475 } 475 476 for (unsigned int i = 0; i < inclusive_jets.size(); i++) {476 cout<<"**********"<<endl; 477 for (unsigned int i = 0; i < sorted_jets.size(); i++) { 477 478 elementJet = (TRootJet*) branchJet->NewEntry(); 478 479 TLorentzVector JET; 479 JET.SetPxPyPzE(inclusive_jets[i].px(),inclusive_jets[i].py(),inclusive_jets[i].pz(),inclusive_jets[i].E()); 480 JET.SetPxPyPzE(sorted_jets[i].px(),sorted_jets[i].py(),sorted_jets[i].pz(),sorted_jets[i].E()); 481 cout<<"JET.Pt() "<<JET.Pt()<<endl; 480 482 elementJet->Set(JET); 481 483 // b-jets -
trunk/Makefile
r11 r15 40 40 interface/LHEFConverter.h \ 41 41 interface/STDHEPConverter.h \ 42 interface/SmearUtil.h \ 43 Utilities/Fastjet/include/fastjet/PseudoJet.hh \ 44 Utilities/Fastjet/include/fastjet/ClusterSequence.hh \ 45 Utilities/Fastjet/include/fastjet/config.h 46 Resolutions$(ExeSuf): \ 47 tmp/Resolutions.$(ObjSuf) 48 49 tmp/Resolutions.$(ObjSuf): \ 50 Resolutions.cpp \ 51 Utilities/ExRootAnalysis/interface/ExRootTreeReader.h \ 52 Utilities/ExRootAnalysis/interface/ExRootTreeWriter.h \ 53 Utilities/ExRootAnalysis/interface/ExRootTreeBranch.h \ 54 interface/DataConverter.h \ 55 interface/HEPEVTConverter.h \ 56 interface/LHEFConverter.h \ 57 interface/STDHEPConverter.h \ 42 58 interface/SmearUtil.h 43 59 EXECUTABLE = \ 44 Delphes$(ExeSuf) 60 Delphes$(ExeSuf) \ 61 Resolutions$(ExeSuf) 45 62 46 63 EXECUTABLE_OBJ = \ 47 tmp/Delphes.$(ObjSuf) 64 tmp/Delphes.$(ObjSuf) \ 65 tmp/Resolutions.$(ObjSuf) 48 66 49 67 tmp/Utilities/ExRootAnalysis/src/BlockClassesDict.$(SrcSuf): \ … … 490 508 @touch $@ 491 509 510 Utilities/Fastjet/include/fastjet/PseudoJet.hh: \ 511 Utilities/Fastjet/include/fastjet/internal/numconsts.hh 512 @touch $@ 513 492 514 493 515 -
trunk/genMakefile.tcl
r11 r15 126 126 global prefix suffix objSuf exeSuf 127 127 128 set executable [glob -nocomplain {Delphes.cpp} ]128 set executable [glob -nocomplain {Delphes.cpp} {Resolutions.cpp}] 129 129 130 130 set exeFiles {}
Note:
See TracChangeset
for help on using the changeset viewer.