CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
L1GtCastorCondition Class Reference

#include <L1GtCastorCondition.h>

Inheritance diagram for L1GtCastorCondition:
L1GtConditionEvaluation

Public Member Functions

const bool conditionResult () const
 get / set the result More...
 
const bool evaluateCondition () const override
 the core function to check if the condition matches More...
 
const L1GtCastorTemplategtCastorTemplate () const
 get / set the pointer to a L1GtCondition More...
 
 L1GtCastorCondition ()
 
 L1GtCastorCondition (const L1GtCastorCondition &)
 
 L1GtCastorCondition (const L1GtCondition *, const bool result)
 from base template condition (from event setup usually) More...
 
L1GtCastorConditionoperator= (const L1GtCastorCondition &)
 
void print (std::ostream &myCout) const override
 print condition More...
 
void setConditionResult (const bool result)
 
void setGtCastorTemplate (const L1GtCastorTemplate *)
 
 ~L1GtCastorCondition () override
 
- 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...
 
const CombinationsInCondgetCombinationsInCond () 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 L1GtCastorCondition &cp)
 copy function for copy constructor and operator= More...
 

Private Attributes

bool m_conditionResult
 condition result More...
 
const L1GtCastorTemplatem_gtCastorTemplate
 pointer to a L1GtCastorTemplate 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 CondCastor condition.

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

Author
: Vasile Mihai Ghete - HEPHY Vienna

Definition at line 32 of file L1GtCastorCondition.h.

Constructor & Destructor Documentation

◆ L1GtCastorCondition() [1/3]

L1GtCastorCondition::L1GtCastorCondition ( )

constructors default

Definition at line 29 of file L1GtCastorCondition.cc.

References m_conditionResult.

◆ L1GtCastorCondition() [2/3]

L1GtCastorCondition::L1GtCastorCondition ( const L1GtCondition castorTemplate,
const bool  result 
)

from base template condition (from event setup usually)

Definition at line 32 of file L1GtCastorCondition.cc.

34  m_gtCastorTemplate(static_cast<const L1GtCastorTemplate *>(castorTemplate)),
36  // maximum number of objects received for the evaluation of the condition
37  // no object
39 }

References L1GtConditionEvaluation::m_condMaxNumberObjects.

◆ L1GtCastorCondition() [3/3]

L1GtCastorCondition::L1GtCastorCondition ( const L1GtCastorCondition cp)

Definition at line 53 of file L1GtCastorCondition.cc.

References copy().

◆ ~L1GtCastorCondition()

L1GtCastorCondition::~L1GtCastorCondition ( )
override

Definition at line 56 of file L1GtCastorCondition.cc.

56  {
57  // empty
58 }

Member Function Documentation

◆ conditionResult()

const bool L1GtCastorCondition::conditionResult ( ) const
inline

get / set the result

Definition at line 64 of file L1GtCastorCondition.h.

64 { return m_conditionResult; }

References m_conditionResult.

◆ copy()

void L1GtCastorCondition::copy ( const L1GtCastorCondition cp)
private

copy function for copy constructor and operator=

Definition at line 42 of file L1GtCastorCondition.cc.

42  {
43  m_gtCastorTemplate = cp.gtCastorTemplate();
44  m_conditionResult = cp.conditionResult();
45 
46  m_condMaxNumberObjects = cp.condMaxNumberObjects();
47  m_condLastResult = cp.condLastResult();
48  m_combinationsInCond = cp.getCombinationsInCond();
49 
50  m_verbosity = cp.m_verbosity;
51 }

References L1GtConditionEvaluation::m_combinationsInCond, m_conditionResult, L1GtConditionEvaluation::m_condLastResult, L1GtConditionEvaluation::m_condMaxNumberObjects, m_gtCastorTemplate, and L1GtConditionEvaluation::m_verbosity.

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

◆ evaluateCondition()

const bool L1GtCastorCondition::evaluateCondition ( ) const
overridevirtual

the core function to check if the condition matches

Implements L1GtConditionEvaluation.

Definition at line 71 of file L1GtCastorCondition.cc.

71  {
72  // clear the m_combinationsInCond vector
74 
75  //
76  return m_conditionResult;
77 }

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

◆ gtCastorTemplate()

const L1GtCastorTemplate* L1GtCastorCondition::gtCastorTemplate ( ) const
inline

get / set the pointer to a L1GtCondition

Definition at line 59 of file L1GtCastorCondition.h.

59 { return m_gtCastorTemplate; }

References m_gtCastorTemplate.

◆ operator=()

L1GtCastorCondition & L1GtCastorCondition::operator= ( const L1GtCastorCondition cp)

Definition at line 61 of file L1GtCastorCondition.cc.

61  {
62  copy(cp);
63  return *this;
64 }

References copy().

◆ print()

void L1GtCastorCondition::print ( std::ostream &  myCout) const
overridevirtual

print condition

Reimplemented from L1GtConditionEvaluation.

Definition at line 79 of file L1GtCastorCondition.cc.

79  {
80  m_gtCastorTemplate->print(myCout);
82 }

References m_gtCastorTemplate, L1GtCastorTemplate::print(), and L1GtConditionEvaluation::print().

Referenced by L1GlobalTriggerGTL::run().

◆ setConditionResult()

void L1GtCastorCondition::setConditionResult ( const bool  result)
inline

Definition at line 66 of file L1GtCastorCondition.h.

References m_conditionResult, and mps_fire::result.

◆ setGtCastorTemplate()

void L1GtCastorCondition::setGtCastorTemplate ( const L1GtCastorTemplate castorTemplate)

Definition at line 67 of file L1GtCastorCondition.cc.

67  {
68  m_gtCastorTemplate = castorTemplate;
69 }

References m_gtCastorTemplate.

Member Data Documentation

◆ m_conditionResult

bool L1GtCastorCondition::m_conditionResult
private

condition result

Definition at line 77 of file L1GtCastorCondition.h.

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

◆ m_gtCastorTemplate

const L1GtCastorTemplate* L1GtCastorCondition::m_gtCastorTemplate
private

pointer to a L1GtCastorTemplate

Definition at line 74 of file L1GtCastorCondition.h.

Referenced by copy(), gtCastorTemplate(), print(), and setGtCastorTemplate().

L1GtConditionEvaluation::m_verbosity
int m_verbosity
verbosity level
Definition: L1GtConditionEvaluation.h:105
L1GtCastorCondition::m_gtCastorTemplate
const L1GtCastorTemplate * m_gtCastorTemplate
pointer to a L1GtCastorTemplate
Definition: L1GtCastorCondition.h:74
L1GtConditionEvaluation::combinationsInCond
CombinationsInCond & combinationsInCond() const
get all the object combinations (to fill it...)
Definition: L1GtConditionEvaluation.h:82
L1GtConditionEvaluation::print
virtual void print(std::ostream &myCout) const
print condition
Definition: L1GtConditionEvaluation.cc:34
L1GtConditionEvaluation::m_combinationsInCond
CombinationsInCond m_combinationsInCond
store all the object combinations evaluated to true in the condition
Definition: L1GtConditionEvaluation.h:102
hgcal_conditions::parameters
Definition: HGCConditions.h:86
L1GtConditionEvaluation::m_condLastResult
bool m_condLastResult
the last result of evaluateCondition()
Definition: L1GtConditionEvaluation.h:99
L1GtConditionEvaluation::L1GtConditionEvaluation
L1GtConditionEvaluation()
constructor
Definition: L1GtConditionEvaluation.h:40
clear
void clear(HadCaloObj &c)
Definition: data.h:124
L1GtConditionEvaluation::m_condMaxNumberObjects
int m_condMaxNumberObjects
Definition: L1GtConditionEvaluation.h:96
L1GtCastorCondition::copy
void copy(const L1GtCastorCondition &cp)
copy function for copy constructor and operator=
Definition: L1GtCastorCondition.cc:42
L1GtCastorTemplate::print
void print(std::ostream &myCout) const override
print the condition
Definition: L1GtCastorTemplate.cc:76
L1GtCastorCondition::m_conditionResult
bool m_conditionResult
condition result
Definition: L1GtCastorCondition.h:77
mps_fire.result
result
Definition: mps_fire.py:311