File indexing completed on 2024-04-06 12:31:19
0001
0002
0003
0004
0005 #ifndef TtHadSimpleBestJetComb_h
0006 #define TtHadSimpleBestJetComb_h
0007
0008 #include "FWCore/Framework/interface/EventSetup.h"
0009 #include "FWCore/Framework/interface/Event.h"
0010 #include "FWCore/MessageLogger/interface/MessageLogger.h"
0011 #include "FWCore/Utilities/interface/Exception.h"
0012 #include "AnalysisDataFormats/TopObjects/interface/TtHadEvtSolution.h"
0013
0014 #include "TF1.h"
0015 #include "TH1.h"
0016 #include "TFile.h"
0017 #include "TKey.h"
0018 #include "TString.h"
0019 #include <Math/VectorUtil.h>
0020
0021 class TtHadSimpleBestJetComb {
0022 public:
0023 TtHadSimpleBestJetComb();
0024 ~TtHadSimpleBestJetComb();
0025
0026 int operator()(std::vector<TtHadEvtSolution> &);
0027
0028 private:
0029 };
0030
0031 #endif