ATLAS Offline Software
Public Member Functions | Private Attributes | List of all members
SkimDecision Class Reference

#include <SkimDecision.h>

Collaboration diagram for SkimDecision:

Public Member Functions

 SkimDecision ()
 Constructors. More...
 
 ~SkimDecision ()
 
std::string getName () const
 
void setName (const std::string &name)
 
bool isAccepted () const
 
void setIsAccepted (bool answer)
 

Private Attributes

std::string m_name
 
bool m_isAccepted
 

Detailed Description

Definition at line 15 of file SkimDecision.h.

Constructor & Destructor Documentation

◆ SkimDecision()

SkimDecision::SkimDecision ( )

Constructors.

Definition at line 16 of file SkimDecision.cxx.

17  : m_isAccepted (true)
18 {
19 }

◆ ~SkimDecision()

SkimDecision::~SkimDecision ( )
inline

Definition at line 37 of file SkimDecision.h.

38  {}

Member Function Documentation

◆ getName()

std::string SkimDecision::getName ( ) const
inline

Definition at line 25 of file SkimDecision.h.

25 { return m_name; }

◆ isAccepted()

bool SkimDecision::isAccepted ( ) const
inline

Definition at line 28 of file SkimDecision.h.

28 { return m_isAccepted; }

◆ setIsAccepted()

void SkimDecision::setIsAccepted ( bool  answer)

Definition at line 22 of file SkimDecision.cxx.

22 { m_isAccepted=answer; }

◆ setName()

void SkimDecision::setName ( const std::string &  name)

Definition at line 21 of file SkimDecision.cxx.

21 { m_name=name; }

Member Data Documentation

◆ m_isAccepted

bool SkimDecision::m_isAccepted
private

Definition at line 33 of file SkimDecision.h.

◆ m_name

std::string SkimDecision::m_name
private

Definition at line 32 of file SkimDecision.h.


The documentation for this class was generated from the following files:
SkimDecision::m_isAccepted
bool m_isAccepted
Definition: SkimDecision.h:33
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
SkimDecision::m_name
std::string m_name
Definition: SkimDecision.h:32