ATLAS Offline Software
InitialSelector.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 INITIALSELECTOR_H_
6 #define INITIALSELECTOR_H_
7 
9 
10 namespace top {
23  virtual bool apply(const top::Event&) const override;
24 
30  virtual std::string name() const override;
31  };
32 }
33 
34 #endif
top
TopConfig A simple configuration that is NOT a singleton.
Definition: AnalysisTrackingHelper.cxx:58
top::InitialSelector::name
virtual std::string name() const override
The name printed in the cutflow.
Definition: InitialSelector.cxx:12
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::InitialSelector::apply
virtual bool apply(const top::Event &) const override
Accept every event.
Definition: InitialSelector.cxx:8
top::InitialSelector
A cut that accepts all events, more useful than you might think.
Definition: InitialSelector.h:17