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

$Date$ $Revision$

Definition at line 34 of file L1GtCastorCondition.h.

Constructor & Destructor Documentation

L1GtCastorCondition::L1GtCastorCondition ( )

constructors default

Definition at line 31 of file L1GtCastorCondition.cc.

References m_conditionResult.

31  :
33 
34  m_conditionResult = false;
35 
36 }
bool m_conditionResult
condition result
L1GtCastorCondition::L1GtCastorCondition ( const L1GtCondition castorTemplate,
const bool  result 
)

from base template condition (from event setup usually)

Definition at line 39 of file L1GtCastorCondition.cc.

References L1GtConditionEvaluation::m_condMaxNumberObjects.

40  :
42  m_gtCastorTemplate(static_cast<const L1GtCastorTemplate*>(castorTemplate)),
44 
45  // maximum number of objects received for the evaluation of the condition
46  // no object
48 
49 }
bool m_conditionResult
condition result
const L1GtCastorTemplate * m_gtCastorTemplate
pointer to a L1GtCastorTemplate
tuple result
Definition: query.py:137
L1GtCastorCondition::L1GtCastorCondition ( const L1GtCastorCondition cp)

Definition at line 65 of file L1GtCastorCondition.cc.

References copy().

65  :
67 
68  copy(cp);
69 
70 }
void copy(const L1GtCastorCondition &cp)
copy function for copy constructor and operator=
L1GtCastorCondition::~L1GtCastorCondition ( )
virtual

Definition at line 73 of file L1GtCastorCondition.cc.

73  {
74 
75  // empty
76 
77 }

Member Function Documentation

const bool L1GtCastorCondition::conditionResult ( ) const
inline

get / set the result

Definition at line 73 of file L1GtCastorCondition.h.

References m_conditionResult.

Referenced by copy().

73  {
74  return m_conditionResult;
75  }
bool m_conditionResult
condition result
void L1GtCastorCondition::copy ( const L1GtCastorCondition cp)
private

copy function for copy constructor and operator=

Definition at line 52 of file L1GtCastorCondition.cc.

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

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

52  {
53 
56 
60 
62 
63 }
bool m_conditionResult
condition result
const L1GtCastorTemplate * m_gtCastorTemplate
pointer to a L1GtCastorTemplate
bool m_condLastResult
the last result of evaluateCondition()
CombinationsInCond m_combinationsInCond
store all the object combinations evaluated to true in the condition
const L1GtCastorTemplate * gtCastorTemplate() const
get / set the pointer to a L1GtCondition
const bool conditionResult() const
get / set the result
CombinationsInCond const & getCombinationsInCond() const
get all the object combinations evaluated to true in the condition
bool condLastResult() const
get the latest result for the condition
const bool L1GtCastorCondition::evaluateCondition ( ) const
virtual

the core function to check if the condition matches

Implements L1GtConditionEvaluation.

Definition at line 94 of file L1GtCastorCondition.cc.

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

94  {
95 
96  // clear the m_combinationsInCond vector
98 
99  //
100  return m_conditionResult;
101 
102 }
bool m_conditionResult
condition result
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:168
const L1GtCastorTemplate* L1GtCastorCondition::gtCastorTemplate ( ) const
inline

get / set the pointer to a L1GtCondition

Definition at line 66 of file L1GtCastorCondition.h.

References m_gtCastorTemplate.

Referenced by copy().

66  {
67  return m_gtCastorTemplate;
68  }
const L1GtCastorTemplate * m_gtCastorTemplate
pointer to a L1GtCastorTemplate
L1GtCastorCondition & L1GtCastorCondition::operator= ( const L1GtCastorCondition cp)

Definition at line 80 of file L1GtCastorCondition.cc.

References copy().

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

print condition

Reimplemented from L1GtConditionEvaluation.

Definition at line 104 of file L1GtCastorCondition.cc.

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

Referenced by L1GlobalTriggerGTL::run().

104  {
105 
106  m_gtCastorTemplate->print(myCout);
108 
109 }
const L1GtCastorTemplate * m_gtCastorTemplate
pointer to a L1GtCastorTemplate
virtual void print(std::ostream &myCout) const
print the condition
virtual void print(std::ostream &myCout) const
print condition
void L1GtCastorCondition::setConditionResult ( const bool  result)
inline

Definition at line 77 of file L1GtCastorCondition.h.

References m_conditionResult, and query::result.

77  {
79  }
bool m_conditionResult
condition result
tuple result
Definition: query.py:137
void L1GtCastorCondition::setGtCastorTemplate ( const L1GtCastorTemplate castorTemplate)

Definition at line 87 of file L1GtCastorCondition.cc.

References m_gtCastorTemplate.

88  {
89 
90  m_gtCastorTemplate = castorTemplate;
91 
92 }
const L1GtCastorTemplate * m_gtCastorTemplate
pointer to a L1GtCastorTemplate

Member Data Documentation

bool L1GtCastorCondition::m_conditionResult
private

condition result

Definition at line 92 of file L1GtCastorCondition.h.

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

const L1GtCastorTemplate* L1GtCastorCondition::m_gtCastorTemplate
private

pointer to a L1GtCastorTemplate

Definition at line 89 of file L1GtCastorCondition.h.

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