ATLAS Offline Software
PseudoTopRecoRun.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3  */
4 
5 #ifndef ANALYSISTOP_TOPEVENTRECONSTRCUTIONTOOLS_PSEUDOTOPRECORUN_H
6 #define ANALYSISTOP_TOPEVENTRECONSTRCUTIONTOOLS_PSEUDOTOPRECORUN_H
7 
10 
11 namespace top {
12  class Event;
13  class TopConfig;
14 
16  public:
17  PseudoTopRecoRun(const std::string& kLeptonType, std::shared_ptr<top::TopConfig> config);
18  virtual ~PseudoTopRecoRun() {}
19 
20  virtual bool apply(const top::Event&) const override;
21 
22  virtual bool applyParticleLevel(const top::ParticleLevelEvent& plEvent) const override;
23 
24  std::string name() const override;
25  private:
26  std::string m_name;
27 
28  std::unique_ptr<top::PseudoTopReco> m_PseudoTopReco;
29  };
30 }
31 #endif
top
TopConfig A simple configuration that is NOT a singleton.
Definition: AnalysisTrackingHelper.cxx:58
top::PseudoTopRecoRun::apply
virtual bool apply(const top::Event &) const override
This does stuff based on the information in an event.
Definition: PseudoTopRecoRun.cxx:27
top::PseudoTopRecoRun::name
std::string name() const override
A human readable name.
Definition: PseudoTopRecoRun.cxx:37
Event
Definition: trigbs_orderedMerge.cxx:42
top::PseudoTopRecoRun::m_name
std::string m_name
Definition: PseudoTopRecoRun.h:26
config
Definition: PhysicsAnalysis/AnalysisCommon/AssociationUtils/python/config.py:1
top::PseudoTopRecoRun::applyParticleLevel
virtual bool applyParticleLevel(const top::ParticleLevelEvent &plEvent) const override
This does stuff based on the information in a particle level event.
Definition: PseudoTopRecoRun.cxx:32
top::PseudoTopRecoRun::m_PseudoTopReco
std::unique_ptr< top::PseudoTopReco > m_PseudoTopReco
Definition: PseudoTopRecoRun.h:28
PseudoTopReco.h
top::ParticleLevelEvent
Definition: ParticleLevelEvent.h:24
top::PseudoTopRecoRun::~PseudoTopRecoRun
virtual ~PseudoTopRecoRun()
Definition: PseudoTopRecoRun.h:18
top::EventSelectorBase
This should apply event-level cuts and perform simple plotting on top::Event objects.
Definition: EventSelectorBase.h:20
EventSelectorBase.h
top::Event
Very simple class to hold event data after reading from a file.
Definition: Event.h:49
top::PseudoTopRecoRun::PseudoTopRecoRun
PseudoTopRecoRun(const std::string &kLeptonType, std::shared_ptr< top::TopConfig > config)
Definition: PseudoTopRecoRun.cxx:17
top::PseudoTopRecoRun
Definition: PseudoTopRecoRun.h:15