ATLAS Offline Software
Loading...
Searching...
No Matches
TrigConf::LogicOR Class Reference

#include <Logic.h>

Inheritance diagram for TrigConf::LogicOR:
Collaboration diagram for TrigConf::LogicOR:

Public Types

enum  NodeType { LEAF , AND , OR }

Public Member Functions

 LogicOR ()
 LogicOR (std::unique_ptr< Logic > &&left)
virtual ~LogicOR () override=default
bool evaluate (const std::map< std::string, bool > &elementsState) const override
bool evaluate (const std::map< std::string, unsigned int > &elementsCount) const override
std::map< std::string, bool > elements () const override
std::map< std::string, unsigned int > elementsCount () const override
void addSubLogic (std::unique_ptr< Logic > &&right)
const std::vector< std::unique_ptr< Logic > > & subLogics () const
std::vector< std::unique_ptr< Logic > > takeSubLogics ()
void print (std::ostream &=std::cout) const
NodeType nodeType () const
void setNegate (bool negate=true)
bool negate () const
void setExpression (const std::string &)
const std::string & expression () const

Private Member Functions

virtual void print (std::ostream &, size_t indSize, size_t indLevel) const override

Private Attributes

std::vector< std::unique_ptr< Logic > > m_subs
NodeType m_nodeType { LEAF }
bool m_negate { false }
std::string m_expression { "" }

Detailed Description

Definition at line 113 of file Logic.h.

Member Enumeration Documentation

◆ NodeType

enum TrigConf::Logic::NodeType
inherited
Enumerator
LEAF 
AND 
OR 

Definition at line 33 of file Logic.h.

Constructor & Destructor Documentation

◆ LogicOR() [1/2]

TrigConf::LogicOR::LogicOR ( )

Definition at line 195 of file Logic.cxx.

195 :
197{}
LogicOPS(NodeType nodeType)
Definition Logic.cxx:103

◆ LogicOR() [2/2]

TrigConf::LogicOR::LogicOR ( std::unique_ptr< Logic > && left)

Definition at line 199 of file Logic.cxx.

199 :
200 LogicOPS(Logic::OR, std::move(left))
201{}

◆ ~LogicOR()

virtual TrigConf::LogicOR::~LogicOR ( )
overridevirtualdefault

Member Function Documentation

◆ addSubLogic()

void TrigConf::LogicOPS::addSubLogic ( std::unique_ptr< Logic > && right)
inherited

Definition at line 114 of file Logic.cxx.

115{
116 m_subs.push_back(std::move(right));
117}
std::vector< std::unique_ptr< Logic > > m_subs
Definition Logic.h:97

◆ elements()

std::map< std::string, bool > TrigConf::LogicOR::elements ( ) const
overridevirtual

Implements TrigConf::Logic.

Definition at line 224 of file Logic.cxx.

224 {
225 std::map<std::string, bool> elements;
226 for( auto & subLogic : subLogics() ) {
227 for ( const auto& el : subLogic->elements() ) {
228 elements.insert(el);
229 }
230 }
231 return elements;
232}
const std::vector< std::unique_ptr< Logic > > & subLogics() const
Definition Logic.cxx:120
std::map< std::string, bool > elements() const override
Definition Logic.cxx:224

◆ elementsCount()

std::map< std::string, unsigned int > TrigConf::LogicOR::elementsCount ( ) const
overridevirtual

Implements TrigConf::Logic.

Definition at line 235 of file Logic.cxx.

235 {
236 std::map<std::string, unsigned int> elementsCount;
237 for( auto & subLogic : subLogics() ) {
238 for ( const auto& el : subLogic->elementsCount() ) {
239 elementsCount.insert(el);
240 }
241 }
242 return elementsCount;
243}
std::map< std::string, unsigned int > elementsCount() const override
Definition Logic.cxx:235

◆ evaluate() [1/2]

bool TrigConf::LogicOR::evaluate ( const std::map< std::string, bool > & elementsState) const
overridevirtual

Implements TrigConf::Logic.

Definition at line 204 of file Logic.cxx.

204 {
205 for( auto & subLogic : subLogics() ) {
206 if( subLogic->evaluate(elementsState) ) { // if one evaluates to true, we can stop
207 return negate() ? false : true;
208 }
209 }
210 return negate() ? true : false;
211}
bool negate() const
Definition Logic.cxx:22

◆ evaluate() [2/2]

bool TrigConf::LogicOR::evaluate ( const std::map< std::string, unsigned int > & elementsCount) const
overridevirtual

Implements TrigConf::Logic.

Definition at line 214 of file Logic.cxx.

214 {
215 for( auto & subLogic : subLogics() ) {
216 if( subLogic->evaluate(elementsCount) ) { // if one evaluates to true, we can stop
217 return negate() ? false : true;
218 }
219 }
220 return negate() ? true : false;
221}

◆ expression()

const std::string & TrigConf::Logic::expression ( ) const
inherited

Definition at line 32 of file Logic.cxx.

32 {
33 return m_expression;
34}
std::string m_expression
Definition Logic.h:61

◆ negate()

bool TrigConf::Logic::negate ( ) const
inherited

Definition at line 22 of file Logic.cxx.

22 {
23 return m_negate;
24}
bool m_negate
Definition Logic.h:60

◆ nodeType()

NodeType TrigConf::Logic::nodeType ( ) const
inlineinherited

Definition at line 37 of file Logic.h.

37{ return m_nodeType; }
NodeType m_nodeType
Definition Logic.h:59

◆ print() [1/2]

void TrigConf::Logic::print ( std::ostream & o = std::cout) const
inherited

Definition at line 37 of file Logic.cxx.

37 {
38 if(m_expression.size()>0) {
39 o << m_expression << std::endl;
40 o << std::string(m_expression.size(), '-') << std::endl;
41 }
42 print(o, 4, 0);
43}
void print(std::ostream &=std::cout) const
Definition Logic.cxx:37

◆ print() [2/2]

void TrigConf::LogicOPS::print ( std::ostream & o,
size_t indSize,
size_t indLevel ) const
overrideprivatevirtualinherited

Implements TrigConf::Logic.

Definition at line 132 of file Logic.cxx.

132 {
133 o << std::string(indSize*indLevel, ' ');
134 if( negate() ) { o << "NOT "; }
135 o << (nodeType()==Logic::AND ? "AND (" : "OR (") << std::endl;
136 for( auto & subLogic : m_subs ) {
137 subLogic->print(o,indSize, indLevel+1);
138 }
139 o << std::string(indSize*indLevel, ' ') << ")" << std::endl;
140}
NodeType nodeType() const
Definition Logic.h:37

◆ setExpression()

void TrigConf::Logic::setExpression ( const std::string & expr)
inherited

Definition at line 27 of file Logic.cxx.

27 {
28 m_expression = expr;
29}

◆ setNegate()

void TrigConf::Logic::setNegate ( bool negate = true)
inherited

Definition at line 17 of file Logic.cxx.

17 {
19}

◆ subLogics()

const std::vector< std::unique_ptr< TrigConf::Logic > > & TrigConf::LogicOPS::subLogics ( ) const
inherited

Definition at line 120 of file Logic.cxx.

120 {
121 return m_subs;
122}

◆ takeSubLogics()

std::vector< std::unique_ptr< TrigConf::Logic > > TrigConf::LogicOPS::takeSubLogics ( )
inherited

Definition at line 125 of file Logic.cxx.

125 {
126 auto tmp = std::move(m_subs);
127 m_subs.clear();
128 return tmp;
129}

Member Data Documentation

◆ m_expression

std::string TrigConf::Logic::m_expression { "" }
privateinherited

Definition at line 61 of file Logic.h.

61{ "" };

◆ m_negate

bool TrigConf::Logic::m_negate { false }
privateinherited

Definition at line 60 of file Logic.h.

60{ false };

◆ m_nodeType

NodeType TrigConf::Logic::m_nodeType { LEAF }
privateinherited

Definition at line 59 of file Logic.h.

59{ LEAF };

◆ m_subs

std::vector<std::unique_ptr<Logic> > TrigConf::LogicOPS::m_subs
privateinherited

Definition at line 97 of file Logic.h.


The documentation for this class was generated from the following files: