Fork me on GitHub

Changeset 100 in svn for trunk/interface


Ignore:
Timestamp:
Dec 18, 2008, 2:39:26 PM (16 years ago)
Author:
severine ovyn
Message:

Remove datacard bug + CaloTowers OK

Location:
trunk/interface
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/interface/BFieldProp.h

    r62 r100  
    1616
    1717#include "interface/SmearUtil.h"
     18
    1819#include "Utilities/ExRootAnalysis/interface/BlockClasses.h"
    1920#include "Utilities/ExRootAnalysis/interface/TSimpleArray.h"
     
    2122using namespace std;
    2223
    23 class TrackPropagation : public RESOLution{
     24class TrackPropagation {
    2425
    2526 public:
    2627  // Constructor
    27     TrackPropagation();
     28    TrackPropagation(string DetDatacard);
    2829 
    2930    void Propagation(const TRootGenParticle *Part,TLorentzVector &genMomentum);
     
    3132    int MAXITERATION;
    3233    int MINSEGLENGTH;
    33  
     34
     35 private:
     36
     37   RESOLution *DET; 
    3438};
    3539 
  • trunk/interface/JetUtils.h

    r54 r100  
    5656using namespace std;
    5757
    58 class JetsUtil: public RESOLution
     58class JetsUtil
    5959{
    6060 public:
    6161  /// Constructor
    62   JetsUtil();
     62  JetsUtil(const string DetDatacard);
    6363
    6464
     
    6868  vector<fastjet::PseudoJet> inclusive_jets;
    6969  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);
    7171 
    7272  void RunJetBtagging(ExRootTreeWriter *treeWriter, ExRootTreeBranch *branchJet,const vector<fastjet::PseudoJet> & sorted_jets,const TSimpleArray<TRootGenParticle> & NFCentralQ);
     
    7474  void RunTauJets(ExRootTreeWriter *treeWriter, ExRootTreeBranch *branchTauJet,const vector<fastjet::PseudoJet> & sorted_jets,const vector<PhysicsTower> & towers, const vector<TLorentzVector> & TrackCentral);
    7575
     76 private:
     77
     78  RESOLution *DET;
    7679};
    7780
  • trunk/interface/VeryForward.h

    r54 r100  
    3535using namespace std;
    3636
    37 class VeryForward : public RESOLution{
     37class VeryForward {
    3838
    3939 public:
    4040  /// Constructor
    41   VeryForward();
     41  VeryForward(string DetDatacard);
    4242
    4343  void ZDC(ExRootTreeWriter *treeWriter,ExRootTreeBranch *branchZDC,TRootGenParticle *particle);
     
    5050 H_BeamLine* beamline2;
    5151
     52 private:
     53 
     54 RESOLution *DET;
     55
    5256};
    5357#endif
Note: See TracChangeset for help on using the changeset viewer.