ATLAS Offline Software
Loading...
Searching...
No Matches
SkimDecision.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3*/
4
6// Header file for class SkimDecision
7// Author: David Cote, September 2008. <david.cote@cern.ch>
9#ifndef SKIMDECISION_H
10#define SKIMDECISION_H
11
13#include <string>
14
16{
17 public:
18 // Default Constructor
20
21 // Destructor
23
24 // get() and set() methods
25 const std::string& getName() const { return m_name; }
26 void setName( const std::string& name );
27
28 bool isAccepted() const { return m_isAccepted; }
29 void setIsAccepted( bool answer );
30
31 private:
32 std::string m_name;
34};
35
36 inline
39
40//this is automatically generated by: 'clid -m SkimDecision'
41CLASS_DEF( SkimDecision , 2337118 , 1 )
42
43#endif //> SKIMDECISION_H
macros to associate a CLID to a type
#define CLASS_DEF(NAME, CID, VERSION)
associate a clid and a version to a type eg
const std::string & getName() const
bool isAccepted() const
std::string m_name
void setName(const std::string &name)
void setIsAccepted(bool answer)
SkimDecision()
Constructors.