Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:24

0001 #ifndef RecoJets_JetAlgorithms_interface_CATopJetHelper_h
0002 #define RecoJets_JetAlgorithms_interface_CATopJetHelper_h
0003 
0004 // \class CATopJetHelper
0005 //
0006 // \short Create tag info properties for CATopTags that can be computed
0007 //        "on the fly".
0008 //
0009 //
0010 // \author Salvatore Rappoccio
0011 // \version first version on 1-May-2011
0012 
0013 #include "DataFormats/JetReco/interface/Jet.h"
0014 #include "DataFormats/BTauReco/interface/CATopJetTagInfo.h"
0015 
0016 class CATopJetHelper {
0017 public:
0018   CATopJetHelper(double TopMass, double WMass) : TopMass_(TopMass), WMass_(WMass) {}
0019 
0020   reco::CATopJetProperties operator()(reco::Jet const& ihardJet) const;
0021 
0022 protected:
0023   double TopMass_;
0024   double WMass_;
0025 };
0026 
0027 #endif