ATLAS Offline Software
PrintEventSelector.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 PRINTEVENTSELECTOR_H_
6 #define PRINTEVENTSELECTOR_H_
7 
9 
10 namespace top {
23  bool apply(const top::Event& event) const override;
24  bool applyParticleLevel(const top::ParticleLevelEvent& plEvent) const override;
25 
29  std::string name() const override;
30  };
31 }
32 
33 #endif
top
TopConfig A simple configuration that is NOT a singleton.
Definition: AnalysisTrackingHelper.cxx:58
top::PrintEventSelector::applyParticleLevel
bool applyParticleLevel(const top::ParticleLevelEvent &plEvent) const override
This does stuff based on the information in a particle level event.
Definition: PrintEventSelector.cxx:21
event
POOL::TEvent event(POOL::TEvent::kClassAccess)
top::PrintEventSelector::apply
bool apply(const top::Event &event) const override
For each event print some information about it to the terminal.
Definition: PrintEventSelector.cxx:15
top::ParticleLevelEvent
Definition: ParticleLevelEvent.h:24
top::EventSelectorBase
This should apply event-level cuts and perform simple plotting on top::Event objects.
Definition: EventSelectorBase.h:20
top::PrintEventSelector::name
std::string name() const override
The word PRINT.
Definition: PrintEventSelector.cxx:27
EventSelectorBase.h
top::Event
Very simple class to hold event data after reading from a file.
Definition: Event.h:49
top::PrintEventSelector
Print some information about the event to the screen.
Definition: PrintEventSelector.h:17