Changeset 100 in svn for trunk/interface
- Timestamp:
- Dec 18, 2008, 2:39:26 PM (16 years ago)
- Location:
- trunk/interface
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/BFieldProp.h
r62 r100 16 16 17 17 #include "interface/SmearUtil.h" 18 18 19 #include "Utilities/ExRootAnalysis/interface/BlockClasses.h" 19 20 #include "Utilities/ExRootAnalysis/interface/TSimpleArray.h" … … 21 22 using namespace std; 22 23 23 class TrackPropagation : public RESOLution{24 class TrackPropagation { 24 25 25 26 public: 26 27 // Constructor 27 TrackPropagation( );28 TrackPropagation(string DetDatacard); 28 29 29 30 void Propagation(const TRootGenParticle *Part,TLorentzVector &genMomentum); … … 31 32 int MAXITERATION; 32 33 int MINSEGLENGTH; 33 34 35 private: 36 37 RESOLution *DET; 34 38 }; 35 39 -
trunk/interface/JetUtils.h
r54 r100 56 56 using namespace std; 57 57 58 class JetsUtil : public RESOLution58 class JetsUtil 59 59 { 60 60 public: 61 61 /// Constructor 62 JetsUtil( );62 JetsUtil(const string DetDatacard); 63 63 64 64 … … 68 68 vector<fastjet::PseudoJet> inclusive_jets; 69 69 vector<fastjet::PseudoJet> sorted_jets; 70 vector<fastjet::PseudoJet> RunJets(const vector<fastjet::PseudoJet> &input_particles);70 vector<fastjet::PseudoJet> RunJets(const vector<fastjet::PseudoJet>& input_particles); 71 71 72 72 void RunJetBtagging(ExRootTreeWriter *treeWriter, ExRootTreeBranch *branchJet,const vector<fastjet::PseudoJet> & sorted_jets,const TSimpleArray<TRootGenParticle> & NFCentralQ); … … 74 74 void RunTauJets(ExRootTreeWriter *treeWriter, ExRootTreeBranch *branchTauJet,const vector<fastjet::PseudoJet> & sorted_jets,const vector<PhysicsTower> & towers, const vector<TLorentzVector> & TrackCentral); 75 75 76 private: 77 78 RESOLution *DET; 76 79 }; 77 80 -
trunk/interface/VeryForward.h
r54 r100 35 35 using namespace std; 36 36 37 class VeryForward : public RESOLution{37 class VeryForward { 38 38 39 39 public: 40 40 /// Constructor 41 VeryForward( );41 VeryForward(string DetDatacard); 42 42 43 43 void ZDC(ExRootTreeWriter *treeWriter,ExRootTreeBranch *branchZDC,TRootGenParticle *particle); … … 50 50 H_BeamLine* beamline2; 51 51 52 private: 53 54 RESOLution *DET; 55 52 56 }; 53 57 #endif
Note:
See TracChangeset
for help on using the changeset viewer.