ATLAS Offline Software
Public Member Functions | List of all members
top::GRLSelector Class Reference

Select events if they are on a GRL specified by the parameter GRLFilename in the configuration file. More...

#include <GRLSelector.h>

Inheritance diagram for top::GRLSelector:
Collaboration diagram for top::GRLSelector:

Public Member Functions

 GRLSelector ()
 
virtual ~GRLSelector ()
 
virtual bool apply (const top::Event &event) const override
 MC simulation passes, data is checked against the GRL. More...
 
std::string name () const override
 The name of the tool. More...
 
virtual bool applyParticleLevel (const top::ParticleLevelEvent &) const
 This does stuff based on the information in a particle level event. More...
 

Detailed Description

Select events if they are on a GRL specified by the parameter GRLFilename in the configuration file.

MC simulation events are always accepted.

Definition at line 16 of file GRLSelector.h.

Constructor & Destructor Documentation

◆ GRLSelector()

top::GRLSelector::GRLSelector ( )

Definition at line 12 of file GRLSelector.cxx.

12  {
13  }

◆ ~GRLSelector()

virtual top::GRLSelector::~GRLSelector ( )
inlinevirtual

Definition at line 19 of file GRLSelector.h.

19 {};

Member Function Documentation

◆ apply()

bool top::GRLSelector::apply ( const top::Event event) const
overridevirtual

MC simulation passes, data is checked against the GRL.

Parameters
eventThe event in question
Returns
True for MC simulation, or if the data event is on the GRL.

Implements top::EventSelectorBase.

Definition at line 15 of file GRLSelector.cxx.

15  {
16  if (event.m_info->isAvailable<char>("AnalysisTop_GRL")) {
17  if (event.m_info->auxdataConst<char>("AnalysisTop_GRL") == 1) {
18  return true;
19  }
20  }
21  return false;
22  }

◆ applyParticleLevel()

virtual bool top::EventSelectorBase::applyParticleLevel ( const top::ParticleLevelEvent ) const
inlinevirtualinherited

This does stuff based on the information in a particle level event.

The idea is that you implement this to return either true or false, based on the information held within the top::ParticleLevelEvent. If this function returns true, then the event is kept, otherwise it is removed. The function has a default implementation (which returns true) because it is expected that many EventSelector objects do not operate on ParticleLevelEvent objects.

Parameters
top::ParticleLevelEventthe current particle level event.
trueif the event should be kept (i.e. it passed the selector criteria), false otherwise.

Reimplemented in top::JetNGhostSelector, top::PrintEventSelector, top::PseudoTopRecoRun, top::NElectronNMuonTightSelector, top::NElectronNMuonSelector, top::NFwdElectronSelector, top::HTSelector, top::OSLeptonTightSelector, top::MLLSelector, top::MWTSelector, top::NElectronTightSelector, top::NFwdElectronTightSelector, top::NMuonTightSelector, top::OSLeptonSelector, top::METMWTSelector, top::METSelector, top::MLLWindow, top::NElectronSelector, top::NJetSelector, top::NMuonSelector, top::NPhotonSelector, top::NSoftMuonSelector, top::NTauSelector, top::SSLeptonTightSelector, top::SSLeptonSelector, top::ParticleLevelSelector, top::RecoLevelSelector, top::NVarRCJetSelector, top::NLargeJetSelector, and top::NRCJetSelector.

Definition at line 73 of file EventSelectorBase.h.

73 {return true;}

◆ name()

std::string top::GRLSelector::name ( ) const
overridevirtual

The name of the tool.

Returns
The name of the tool for humans to see.

Implements top::EventSelectorBase.

Definition at line 24 of file GRLSelector.cxx.

24  {
25  return "GRL";
26  }

The documentation for this class was generated from the following files:
event
POOL::TEvent event(POOL::TEvent::kClassAccess)