CMS 3D CMS Logo

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

#include <CorrelationTemplate.h>

Inheritance diagram for CorrelationTemplate:
GlobalCondition

Classes

struct  CorrelationParameter
 typedef for correlation parameters More...
 

Public Member Functions

const l1t::GtConditionCategory cond0Category () const
 get / set the category of the two sub-conditions More...
 
const int cond0Index () const
 get / set the index of the two sub-conditions in the cor* vector from menu More...
 
const l1t::GtConditionCategory cond1Category () const
 
const int cond1Index () const
 
const CorrelationParametercorrelationParameter () const
 get / set correlation parameters More...
 
 CorrelationTemplate ()
 
 CorrelationTemplate (const std::string &)
 from condition name More...
 
 CorrelationTemplate (const std::string &, const l1t::GtConditionCategory &, const l1t::GtConditionCategory &, const int, const int)
 
 CorrelationTemplate (const CorrelationTemplate &)
 copy constructor More...
 
CorrelationTemplateoperator= (const CorrelationTemplate &)
 assign operator More...
 
virtual void print (std::ostream &myCout) const
 print the condition More...
 
void setCond0Category (const l1t::GtConditionCategory &)
 
void setCond0Index (const int &)
 
void setCond1Category (const l1t::GtConditionCategory &)
 
void setCond1Index (const int &)
 
void setCorrelationParameter (const CorrelationParameter &corrParameter)
 
virtual ~CorrelationTemplate ()
 destructor More...
 
- Public Member Functions inherited from GlobalCondition
const l1t::GtConditionCategorycondCategory () const
 get / set the category of the condition More...
 
const int & condChipNr () const
 get / set the condition-chip number the condition is located on More...
 
const bool condGEq () const
 get / set condition GEq flag More...
 
const std::string & condName () const
 get / set condition name More...
 
const int & condRelativeBx () const
 get / set the condition relative bx More...
 
const l1t::GtConditionTypecondType () const
 get / set the type of the condition (1s, etc) More...
 
const bool corr () const
 
 GlobalCondition ()
 
 GlobalCondition (const std::string &)
 constructor from condition name More...
 
 GlobalCondition (const std::string &, const l1t::GtConditionCategory &, const l1t::GtConditionType &)
 constructor from condition name, category and type More...
 
const int nrObjects () const
 get number of trigger objects More...
 
const std::vector< GlobalObject > & objectType () const
 get / set the trigger object type(s) in the condition More...
 
void setCondCategory (const l1t::GtConditionCategory &cCategory)
 
void setCondChipNr (const int &cChipNr)
 
void setCondGEq (const bool &cGEq)
 
void setCondName (const std::string &cName)
 
void setCondRelativeBx (const int &cRelativeBx)
 
void setCondType (const l1t::GtConditionType &cType)
 
void setObjectType (const std::vector< GlobalObject > &objType)
 
const bool wsc () const
 
virtual ~GlobalCondition ()
 destructor More...
 

Private Member Functions

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

Private Attributes

l1t::GtConditionCategory m_cond0Category
 
int m_cond0Index
 
l1t::GtConditionCategory m_cond1Category
 
int m_cond1Index
 
CorrelationParameter m_correlationParameter
 

Friends

std::ostream & operator<< (std::ostream &, const CorrelationTemplate &)
 output stream operator More...
 

Additional Inherited Members

- Protected Attributes inherited from GlobalCondition
l1t::GtConditionCategory m_condCategory
 the category of the condition More...
 
int m_condChipNr
 condition is located on condition chip m_condChipNr More...
 
bool m_condGEq
 the operator used for the condition (>=, =): true for >= More...
 
std::string m_condName
 the name of the condition More...
 
int m_condRelativeBx
 
l1t::GtConditionType m_condType
 the type of the condition (1s, etc) More...
 
std::vector< GlobalObjectm_objectType
 the trigger object type(s) More...
 

Detailed Description

Description: L1 Global Trigger correlation template. Includes spatial correlation for two objects of different type.

Implementation: <TODO: enter implementation details>

Author
: Vasile Mihai Ghete - HEPHY Vienna

$Date$ $Revision$

Definition at line 36 of file CorrelationTemplate.h.

Constructor & Destructor Documentation

CorrelationTemplate::CorrelationTemplate ( )

constructor(s) default

Definition at line 34 of file CorrelationTemplate.cc.

CorrelationTemplate::CorrelationTemplate ( const std::string &  cName)

from condition name

Definition at line 57 of file CorrelationTemplate.cc.

CorrelationTemplate::CorrelationTemplate ( const std::string &  cName,
const l1t::GtConditionCategory cond0Cat,
const l1t::GtConditionCategory cond1Cat,
const int  cond0Index,
const int  cond1index 
)

from condition name, the category of first sub-condition, the category of the second sub-condition, the index of first sub-condition in the cor* vector, the index of second sub-condition in the cor* vector

Definition at line 82 of file CorrelationTemplate.cc.

CorrelationTemplate::CorrelationTemplate ( const CorrelationTemplate cp)

copy constructor

Definition at line 108 of file CorrelationTemplate.cc.

CorrelationTemplate::~CorrelationTemplate ( )
virtual

destructor

Definition at line 115 of file CorrelationTemplate.cc.

Member Function Documentation

const l1t::GtConditionCategory CorrelationTemplate::cond0Category ( ) const
inline

get / set the category of the two sub-conditions

Definition at line 98 of file CorrelationTemplate.h.

References m_cond0Category.

98  {
99  return m_cond0Category;
100  }
l1t::GtConditionCategory m_cond0Category
const int CorrelationTemplate::cond0Index ( ) const
inline

get / set the index of the two sub-conditions in the cor* vector from menu

Definition at line 110 of file CorrelationTemplate.h.

References m_cond0Index.

110  {
111  return m_cond0Index;
112  }
const l1t::GtConditionCategory CorrelationTemplate::cond1Category ( ) const
inline

Definition at line 102 of file CorrelationTemplate.h.

References m_cond1Category.

102  {
103  return m_cond1Category;
104  }
l1t::GtConditionCategory m_cond1Category
const int CorrelationTemplate::cond1Index ( ) const
inline

Definition at line 114 of file CorrelationTemplate.h.

References m_cond1Index.

114  {
115  return m_cond1Index;
116  }
void CorrelationTemplate::copy ( const CorrelationTemplate cp)
private

copy function for copy constructor and operator=

Definition at line 195 of file CorrelationTemplate.cc.

const CorrelationParameter* CorrelationTemplate::correlationParameter ( ) const
inline

get / set correlation parameters

Definition at line 123 of file CorrelationTemplate.h.

References m_correlationParameter.

124  {
125  return &m_correlationParameter;
126  }
CorrelationParameter m_correlationParameter
CorrelationTemplate & CorrelationTemplate::operator= ( const CorrelationTemplate cp)

assign operator

Definition at line 121 of file CorrelationTemplate.cc.

void CorrelationTemplate::print ( std::ostream &  myCout) const
virtual

print the condition

Reimplemented from GlobalCondition.

Definition at line 160 of file CorrelationTemplate.cc.

void CorrelationTemplate::setCond0Category ( const l1t::GtConditionCategory condCateg)

Definition at line 129 of file CorrelationTemplate.cc.

void CorrelationTemplate::setCond0Index ( const int &  condIndex)

Definition at line 143 of file CorrelationTemplate.cc.

void CorrelationTemplate::setCond1Category ( const l1t::GtConditionCategory condCateg)

Definition at line 135 of file CorrelationTemplate.cc.

void CorrelationTemplate::setCond1Index ( const int &  condIndex)

Definition at line 147 of file CorrelationTemplate.cc.

void CorrelationTemplate::setCorrelationParameter ( const CorrelationParameter corrParameter)

Definition at line 153 of file CorrelationTemplate.cc.

Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const CorrelationTemplate result 
)
friend

output stream operator

Definition at line 215 of file CorrelationTemplate.cc.

Member Data Documentation

l1t::GtConditionCategory CorrelationTemplate::m_cond0Category
private

Definition at line 146 of file CorrelationTemplate.h.

Referenced by cond0Category().

int CorrelationTemplate::m_cond0Index
private

Definition at line 148 of file CorrelationTemplate.h.

Referenced by cond0Index().

l1t::GtConditionCategory CorrelationTemplate::m_cond1Category
private

Definition at line 147 of file CorrelationTemplate.h.

Referenced by cond1Category().

int CorrelationTemplate::m_cond1Index
private

Definition at line 149 of file CorrelationTemplate.h.

Referenced by cond1Index().

CorrelationParameter CorrelationTemplate::m_correlationParameter
private

Definition at line 150 of file CorrelationTemplate.h.

Referenced by correlationParameter().