ATLAS Offline Software
InitialSelector.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3  */
4 
6 
7 namespace top {
8  bool InitialSelector::apply(const top::Event&) const {
9  return true;
10  }
11 
12  std::string InitialSelector::name() const {
13  return "INITIAL";
14  }
15 }
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
InitialSelector.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