CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
L1GtExternalCondition Class Reference

#include <L1GtExternalCondition.h>

Inheritance diagram for L1GtExternalCondition:
L1GtConditionEvaluation

Public Member Functions

const bool conditionResult () const
 get / set the result More...
 
const bool evaluateCondition () const
 the core function to check if the condition matches More...
 
const L1GtExternalTemplategtExternalTemplate () const
 get / set the pointer to a L1GtCondition More...
 
 L1GtExternalCondition ()
 
 L1GtExternalCondition (const L1GtCondition *, const bool result)
 from base template condition (from event setup usually) More...
 
 L1GtExternalCondition (const L1GtExternalCondition &)
 
L1GtExternalConditionoperator= (const L1GtExternalCondition &)
 
void print (std::ostream &myCout) const
 print condition More...
 
void setConditionResult (const bool result)
 
void setGtExternalTemplate (const L1GtExternalTemplate *)
 
virtual ~L1GtExternalCondition ()
 
- Public Member Functions inherited from L1GtConditionEvaluation
bool condLastResult () const
 get the latest result for the condition More...
 
int condMaxNumberObjects () const
 
void evaluateConditionStoreResult ()
 call evaluateCondition and save last result More...
 
CombinationsInCond const & getCombinationsInCond () const
 get all the object combinations evaluated to true in the condition More...
 
virtual std::string getNumericExpression () const
 get numeric expression More...
 
 L1GtConditionEvaluation ()
 constructor More...
 
void setCondMaxNumberObjects (int condMaxNumberObjectsValue)
 
void setVerbosity (const int verbosity)
 
virtual ~L1GtConditionEvaluation ()
 destructor More...
 

Private Member Functions

void copy (const L1GtExternalCondition &cp)
 copy function for copy constructor and operator= More...
 

Private Attributes

bool m_conditionResult
 condition result More...
 
const L1GtExternalTemplatem_gtExternalTemplate
 pointer to a L1GtExternalTemplate More...
 

Additional Inherited Members

- Protected Member Functions inherited from L1GtConditionEvaluation
template<class Type1 >
const bool checkBit (const Type1 &mask, const unsigned int bitNumber) const
 check if a bit with a given number is set in a mask More...
 
template<class Type1 , class Type2 >
const bool checkThreshold (const Type1 &threshold, const Type2 &value, const bool condGEqValue) const
 
CombinationsInCondcombinationsInCond () const
 get all the object combinations (to fill it...) More...
 
- Protected Attributes inherited from L1GtConditionEvaluation
CombinationsInCond m_combinationsInCond
 store all the object combinations evaluated to true in the condition More...
 
bool m_condLastResult
 the last result of evaluateCondition() More...
 
int m_condMaxNumberObjects
 
int m_verbosity
 verbosity level More...
 

Detailed Description

Description: evaluation of a CondExternal condition.

Implementation: Simply put the result read in the L1GtConditionEvaluation base class, to be similar with other conditions.

Author
: Vasile Mihai Ghete - HEPHY Vienna

Definition at line 32 of file L1GtExternalCondition.h.

Constructor & Destructor Documentation

L1GtExternalCondition::L1GtExternalCondition ( )

constructors default

Definition at line 29 of file L1GtExternalCondition.cc.

References m_conditionResult.

29  :
31 
32  m_conditionResult = false;
33 
34 }
bool m_conditionResult
condition result
L1GtExternalCondition::L1GtExternalCondition ( const L1GtCondition externalTemplate,
const bool  result 
)

from base template condition (from event setup usually)

Definition at line 37 of file L1GtExternalCondition.cc.

References L1GtConditionEvaluation::m_condMaxNumberObjects.

38  :
40  m_gtExternalTemplate(static_cast<const L1GtExternalTemplate*>(externalTemplate)),
42 
43  // maximum number of objects received for the evaluation of the condition
44  // no object
46 
47 }
tuple result
Definition: query.py:137
const L1GtExternalTemplate * m_gtExternalTemplate
pointer to a L1GtExternalTemplate
bool m_conditionResult
condition result
L1GtExternalCondition::L1GtExternalCondition ( const L1GtExternalCondition cp)

Definition at line 63 of file L1GtExternalCondition.cc.

References copy().

63  :
65 
66  copy(cp);
67 
68 }
void copy(const L1GtExternalCondition &cp)
copy function for copy constructor and operator=
L1GtExternalCondition::~L1GtExternalCondition ( )
virtual

Definition at line 71 of file L1GtExternalCondition.cc.

71  {
72 
73  // empty
74 
75 }

Member Function Documentation

const bool L1GtExternalCondition::conditionResult ( ) const
inline

get / set the result

Definition at line 71 of file L1GtExternalCondition.h.

References m_conditionResult.

Referenced by copy().

71  {
72  return m_conditionResult;
73  }
bool m_conditionResult
condition result
void L1GtExternalCondition::copy ( const L1GtExternalCondition cp)
private

copy function for copy constructor and operator=

Definition at line 50 of file L1GtExternalCondition.cc.

References conditionResult(), L1GtConditionEvaluation::condLastResult(), L1GtConditionEvaluation::condMaxNumberObjects(), L1GtConditionEvaluation::getCombinationsInCond(), gtExternalTemplate(), L1GtConditionEvaluation::m_combinationsInCond, m_conditionResult, L1GtConditionEvaluation::m_condLastResult, L1GtConditionEvaluation::m_condMaxNumberObjects, m_gtExternalTemplate, and L1GtConditionEvaluation::m_verbosity.

Referenced by L1GtExternalCondition(), and operator=().

50  {
51 
54 
58 
60 
61 }
const L1GtExternalTemplate * gtExternalTemplate() const
get / set the pointer to a L1GtCondition
bool m_condLastResult
the last result of evaluateCondition()
CombinationsInCond m_combinationsInCond
store all the object combinations evaluated to true in the condition
const L1GtExternalTemplate * m_gtExternalTemplate
pointer to a L1GtExternalTemplate
const bool conditionResult() const
get / set the result
CombinationsInCond const & getCombinationsInCond() const
get all the object combinations evaluated to true in the condition
bool m_conditionResult
condition result
bool condLastResult() const
get the latest result for the condition
const bool L1GtExternalCondition::evaluateCondition ( ) const
virtual

the core function to check if the condition matches

Implements L1GtConditionEvaluation.

Definition at line 92 of file L1GtExternalCondition.cc.

References hitfit::clear(), L1GtConditionEvaluation::combinationsInCond(), and m_conditionResult.

92  {
93 
94  // clear the m_combinationsInCond vector
96 
97  //
98  return m_conditionResult;
99 
100 }
CombinationsInCond & combinationsInCond() const
get all the object combinations (to fill it...)
void clear(CLHEP::HepGenMatrix &m)
Helper function: Reset all elements of a matrix to 0.
Definition: matutil.cc:167
bool m_conditionResult
condition result
const L1GtExternalTemplate* L1GtExternalCondition::gtExternalTemplate ( ) const
inline

get / set the pointer to a L1GtCondition

Definition at line 64 of file L1GtExternalCondition.h.

References m_gtExternalTemplate.

Referenced by copy().

64  {
65  return m_gtExternalTemplate;
66  }
const L1GtExternalTemplate * m_gtExternalTemplate
pointer to a L1GtExternalTemplate
L1GtExternalCondition & L1GtExternalCondition::operator= ( const L1GtExternalCondition cp)

Definition at line 78 of file L1GtExternalCondition.cc.

References copy().

79 {
80  copy(cp);
81  return *this;
82 }
void copy(const L1GtExternalCondition &cp)
copy function for copy constructor and operator=
void L1GtExternalCondition::print ( std::ostream &  myCout) const
virtual

print condition

Reimplemented from L1GtConditionEvaluation.

Definition at line 102 of file L1GtExternalCondition.cc.

References m_gtExternalTemplate, L1GtExternalTemplate::print(), and L1GtConditionEvaluation::print().

Referenced by L1GlobalTriggerGTL::run().

102  {
103 
104  m_gtExternalTemplate->print(myCout);
106 
107 }
const L1GtExternalTemplate * m_gtExternalTemplate
pointer to a L1GtExternalTemplate
virtual void print(std::ostream &myCout) const
print condition
virtual void print(std::ostream &myCout) const
print the condition
void L1GtExternalCondition::setConditionResult ( const bool  result)
inline

Definition at line 75 of file L1GtExternalCondition.h.

References m_conditionResult, and query::result.

75  {
77  }
tuple result
Definition: query.py:137
bool m_conditionResult
condition result
void L1GtExternalCondition::setGtExternalTemplate ( const L1GtExternalTemplate externalTemplate)

Definition at line 85 of file L1GtExternalCondition.cc.

References m_gtExternalTemplate.

86  {
87 
88  m_gtExternalTemplate = externalTemplate;
89 
90 }
const L1GtExternalTemplate * m_gtExternalTemplate
pointer to a L1GtExternalTemplate

Member Data Documentation

bool L1GtExternalCondition::m_conditionResult
private

condition result

Definition at line 90 of file L1GtExternalCondition.h.

Referenced by conditionResult(), copy(), evaluateCondition(), L1GtExternalCondition(), and setConditionResult().

const L1GtExternalTemplate* L1GtExternalCondition::m_gtExternalTemplate
private

pointer to a L1GtExternalTemplate

Definition at line 87 of file L1GtExternalCondition.h.

Referenced by copy(), gtExternalTemplate(), print(), and setGtExternalTemplate().