File indexing completed on 2024-04-06 11:57:31
0001 #ifndef TtFullLepEvtPartons_h
0002 #define TtFullLepEvtPartons_h
0003
0004 #include "AnalysisDataFormats/TopObjects/interface/TtEventPartons.h"
0005
0006 #include <vector>
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 namespace reco {
0017 class Candidate;
0018 }
0019 class TtGenEvent;
0020
0021 class TtFullLepEvtPartons : public TtEventPartons {
0022 public:
0023
0024
0025 enum { B, BBar, Lepton, LeptonBar };
0026
0027 public:
0028
0029 TtFullLepEvtPartons(const std::vector<std::string>& partonsToIgnore = std::vector<std::string>());
0030
0031
0032 std::vector<const reco::Candidate*> vec(const TtGenEvent& genEvt) const override;
0033 };
0034
0035 #endif