Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:19

0001 #ifndef TtHadLRJetCombCalc_h
0002 #define TtHadLRJetCombCalc_h
0003 // copied TtSemiLRJetCombCalc.h,v 1.3 2007/06/15 08:53:52 by heyninck
0004 
0005 #include "FWCore/Framework/interface/EventSetup.h"
0006 #include "FWCore/Framework/interface/Event.h"
0007 #include "FWCore/MessageLogger/interface/MessageLogger.h"
0008 #include "FWCore/Utilities/interface/Exception.h"
0009 #include "AnalysisDataFormats/TopObjects/interface/TtHadEvtSolution.h"
0010 #include "TopQuarkAnalysis/TopTools/interface/LRHelpFunctions.h"
0011 
0012 #include "TF1.h"
0013 #include "TH1.h"
0014 #include "TFile.h"
0015 #include "TKey.h"
0016 #include "TString.h"
0017 
0018 class TtHadLRJetCombCalc {
0019 public:
0020   TtHadLRJetCombCalc();
0021   TtHadLRJetCombCalc(const TString&, const std::vector<int>&);
0022   ~TtHadLRJetCombCalc();
0023 
0024   void operator()(TtHadEvtSolution&);
0025 
0026 private:
0027   LRHelpFunctions* myLR;
0028   bool addPurity;
0029 };
0030 
0031 #endif