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:
GtCondition

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 GtCondition
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
 
 GtCondition ()
 
 GtCondition (const std::string &)
 constructor from condition name More...
 
 GtCondition (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< L1GtObject > & 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< L1GtObject > &objType)
 
const bool wsc () const
 
virtual ~GtCondition ()
 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 GtCondition
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< L1GtObjectm_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 37 of file CorrelationTemplate.h.

Constructor & Destructor Documentation

CorrelationTemplate::CorrelationTemplate ( )

constructor(s) default

Definition at line 36 of file CorrelationTemplate.cc.

References l1t::CondCorrelation, l1t::CondNull, m_cond0Category, m_cond0Index, m_cond1Category, m_cond1Index, GtCondition::m_condCategory, GtCondition::m_condChipNr, GtCondition::m_condType, GtCondition::m_objectType, GtCondition::nrObjects(), and l1t::Type2cor.

37  : GtCondition()
38 {
39 
42  m_condChipNr = -1;
43 
44  // there are in fact two objects
45  int nObjects = nrObjects();
46 
47  if (nObjects > 0) {
48  m_objectType.reserve(nObjects);
49  }
50 
53  m_cond0Index = -1;
54  m_cond1Index = -1;
55 
56 }
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
Definition: GtCondition.h:161
int m_condChipNr
condition is located on condition chip m_condChipNr
Definition: GtCondition.h:170
std::vector< L1GtObject > m_objectType
the trigger object type(s)
Definition: GtCondition.h:164
const int nrObjects() const
get number of trigger objects
Definition: GtCondition.cc:74
l1t::GtConditionCategory m_condCategory
the category of the condition
Definition: GtCondition.h:158
l1t::GtConditionCategory m_cond1Category
l1t::GtConditionCategory m_cond0Category
CorrelationTemplate::CorrelationTemplate ( const std::string &  cName)

from condition name

Definition at line 59 of file CorrelationTemplate.cc.

References l1t::CondCorrelation, l1t::CondNull, m_cond0Category, m_cond0Index, m_cond1Category, m_cond1Index, GtCondition::m_condCategory, GtCondition::m_condChipNr, GtCondition::m_condType, GtCondition::m_objectType, GtCondition::nrObjects(), and l1t::Type2cor.

60  : GtCondition(cName)
61 {
62 
65  m_condChipNr = -1;
66 
67  // there are in fact two objects
68  int nObjects = nrObjects();
69 
70  if (nObjects > 0) {
71  m_objectType.reserve(nObjects);
72  }
73 
76  m_cond0Index = -1;
77  m_cond1Index = -1;
78 
79 }
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
Definition: GtCondition.h:161
int m_condChipNr
condition is located on condition chip m_condChipNr
Definition: GtCondition.h:170
std::vector< L1GtObject > m_objectType
the trigger object type(s)
Definition: GtCondition.h:164
const int nrObjects() const
get number of trigger objects
Definition: GtCondition.cc:74
l1t::GtConditionCategory m_condCategory
the category of the condition
Definition: GtCondition.h:158
l1t::GtConditionCategory m_cond1Category
l1t::GtConditionCategory m_cond0Category
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 84 of file CorrelationTemplate.cc.

References l1t::CondCorrelation, GtCondition::m_condCategory, GtCondition::m_condChipNr, GtCondition::m_condType, GtCondition::m_objectType, GtCondition::nrObjects(), and l1t::Type2cor.

88  :
89  GtCondition(cName),
90  m_cond0Category(cond0Cat),
91  m_cond1Category(cond1Cat),
93  m_cond1Index(cond1index)
94 
95 {
96 
99  m_condChipNr = -1;
100 
101  // there are in fact two objects
102  int nObjects = nrObjects();
103 
104  if (nObjects> 0) {
105  m_objectType.resize(nObjects);
106  }
107 }
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
Definition: GtCondition.h:161
int m_condChipNr
condition is located on condition chip m_condChipNr
Definition: GtCondition.h:170
std::vector< L1GtObject > m_objectType
the trigger object type(s)
Definition: GtCondition.h:164
const int nrObjects() const
get number of trigger objects
Definition: GtCondition.cc:74
l1t::GtConditionCategory m_condCategory
the category of the condition
Definition: GtCondition.h:158
const int cond0Index() const
get / set the index of the two sub-conditions in the cor* vector from menu
l1t::GtConditionCategory m_cond1Category
l1t::GtConditionCategory m_cond0Category
CorrelationTemplate::CorrelationTemplate ( const CorrelationTemplate cp)

copy constructor

Definition at line 110 of file CorrelationTemplate.cc.

References copy().

111  : GtCondition(cp.m_condName)
112 {
113  copy(cp);
114 }
std::string m_condName
the name of the condition
Definition: GtCondition.h:155
void copy(const CorrelationTemplate &cp)
copy function for copy constructor and operator=
CorrelationTemplate::~CorrelationTemplate ( )
virtual

destructor

Definition at line 117 of file CorrelationTemplate.cc.

118 {
119  // empty now
120 }

Member Function Documentation

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

get / set the category of the two sub-conditions

Definition at line 80 of file CorrelationTemplate.h.

References m_cond0Category.

Referenced by copy().

80  {
81  return m_cond0Category;
82  }
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 92 of file CorrelationTemplate.h.

References m_cond0Index.

Referenced by copy().

92  {
93  return m_cond0Index;
94  }
const l1t::GtConditionCategory CorrelationTemplate::cond1Category ( ) const
inline

Definition at line 84 of file CorrelationTemplate.h.

References m_cond1Category.

Referenced by copy().

84  {
85  return m_cond1Category;
86  }
l1t::GtConditionCategory m_cond1Category
const int CorrelationTemplate::cond1Index ( ) const
inline

Definition at line 96 of file CorrelationTemplate.h.

References m_cond1Index.

Referenced by copy().

96  {
97  return m_cond1Index;
98  }
void CorrelationTemplate::copy ( const CorrelationTemplate cp)
private

copy function for copy constructor and operator=

Definition at line 189 of file CorrelationTemplate.cc.

References cond0Category(), cond0Index(), cond1Category(), cond1Index(), GtCondition::condCategory(), GtCondition::condChipNr(), GtCondition::condGEq(), GtCondition::condName(), GtCondition::condType(), correlationParameter(), m_cond0Category, m_cond0Index, m_cond1Category, m_cond1Index, GtCondition::m_condCategory, GtCondition::m_condChipNr, GtCondition::m_condGEq, GtCondition::m_condName, GtCondition::m_condType, m_correlationParameter, GtCondition::m_objectType, and GtCondition::objectType().

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

190 {
191 
192  m_condName = cp.condName();
194  m_condType = cp.condType();
195  m_objectType = cp.objectType();
196  m_condGEq = cp.condGEq();
197  m_condChipNr = cp.condChipNr();
198 
201  m_cond0Index = cp.cond0Index();
202  m_cond1Index = cp.cond1Index();
203 
205 
206 }
bool m_condGEq
the operator used for the condition (&gt;=, =): true for &gt;=
Definition: GtCondition.h:167
const int & condChipNr() const
get / set the condition-chip number the condition is located on
Definition: GtCondition.h:111
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
Definition: GtCondition.h:161
int m_condChipNr
condition is located on condition chip m_condChipNr
Definition: GtCondition.h:170
CorrelationParameter m_correlationParameter
const l1t::GtConditionCategory cond0Category() const
get / set the category of the two sub-conditions
std::vector< L1GtObject > m_objectType
the trigger object type(s)
Definition: GtCondition.h:164
std::string m_condName
the name of the condition
Definition: GtCondition.h:155
const l1t::GtConditionCategory cond1Category() const
l1t::GtConditionCategory m_condCategory
the category of the condition
Definition: GtCondition.h:158
const int cond0Index() const
get / set the index of the two sub-conditions in the cor* vector from menu
const l1t::GtConditionType & condType() const
get / set the type of the condition (1s, etc)
Definition: GtCondition.h:78
const int cond1Index() const
const std::vector< L1GtObject > & objectType() const
get / set the trigger object type(s) in the condition
Definition: GtCondition.h:89
l1t::GtConditionCategory m_cond1Category
l1t::GtConditionCategory m_cond0Category
const std::string & condName() const
get / set condition name
Definition: GtCondition.h:56
const CorrelationParameter * correlationParameter() const
get / set correlation parameters
const l1t::GtConditionCategory & condCategory() const
get / set the category of the condition
Definition: GtCondition.h:67
const bool condGEq() const
get / set condition GEq flag
Definition: GtCondition.h:100
const CorrelationParameter* CorrelationTemplate::correlationParameter ( ) const
inline

get / set correlation parameters

Definition at line 105 of file CorrelationTemplate.h.

References m_correlationParameter.

Referenced by copy().

106  {
107  return &m_correlationParameter;
108  }
CorrelationParameter m_correlationParameter
CorrelationTemplate & CorrelationTemplate::operator= ( const CorrelationTemplate cp)

assign operator

Definition at line 123 of file CorrelationTemplate.cc.

References copy().

124 {
125 
126  copy(cp);
127  return *this;
128 }
void copy(const CorrelationTemplate &cp)
copy function for copy constructor and operator=
void CorrelationTemplate::print ( std::ostream &  myCout) const
virtual

print the condition

Reimplemented from GtCondition.

Definition at line 162 of file CorrelationTemplate.cc.

References TauDecayModes::dec, CorrelationTemplate::CorrelationParameter::deltaEtaRange, CorrelationTemplate::CorrelationParameter::deltaPhiMaxbits, CorrelationTemplate::CorrelationParameter::deltaPhiRange, m_cond0Category, m_cond0Index, m_cond1Category, m_cond1Index, m_correlationParameter, and GtCondition::print().

Referenced by operator<<().

163 {
164 
165  myCout << "\n CorrelationTemplate print..." << std::endl;
166 
167  GtCondition::print(myCout);
168 
169  myCout << "\n First sub-condition category: " << m_cond0Category << std::endl;
170  myCout << " Second sub-condition category: " << m_cond1Category << std::endl;
171 
172  myCout << "\n First sub-condition index: " << m_cond0Index << std::endl;
173  myCout << " Second sub-condition index: " << m_cond1Index << std::endl;
174 
175  myCout << "\n Correlation parameters " << "[ hex ]" << std::endl;
176 
177 
178  myCout << " deltaEtaRange = "
179  << std::hex << m_correlationParameter.deltaEtaRange << std::endl;
180  myCout << " deltaPhiRange = "
181  << std::hex << m_correlationParameter.deltaPhiRange << std::endl;
182  myCout << " deltaPhiMaxbits = "
183  << std::hex << m_correlationParameter.deltaPhiMaxbits << std::endl;
184 
185  // reset to decimal output
186  myCout << std::dec << std::endl;
187 }
CorrelationParameter m_correlationParameter
virtual void print(std::ostream &myCout) const
print condition
Definition: GtCondition.cc:154
l1t::GtConditionCategory m_cond1Category
l1t::GtConditionCategory m_cond0Category
void CorrelationTemplate::setCond0Category ( const l1t::GtConditionCategory condCateg)

Definition at line 131 of file CorrelationTemplate.cc.

References m_cond0Category.

132  {
133 
134  m_cond0Category = condCateg;
135 }
l1t::GtConditionCategory m_cond0Category
void CorrelationTemplate::setCond0Index ( const int &  condIndex)

Definition at line 145 of file CorrelationTemplate.cc.

References m_cond0Index.

145  {
146  m_cond0Index = condIndex;
147 }
void CorrelationTemplate::setCond1Category ( const l1t::GtConditionCategory condCateg)

Definition at line 137 of file CorrelationTemplate.cc.

References m_cond1Category.

138  {
139 
140  m_cond1Category = condCateg;
141 }
l1t::GtConditionCategory m_cond1Category
void CorrelationTemplate::setCond1Index ( const int &  condIndex)

Definition at line 149 of file CorrelationTemplate.cc.

References m_cond1Index.

149  {
150  m_cond1Index = condIndex;
151 }
void CorrelationTemplate::setCorrelationParameter ( const CorrelationParameter corrParameter)

Definition at line 155 of file CorrelationTemplate.cc.

References m_correlationParameter.

156  {
157 
158  m_correlationParameter = corrParameter;
159 
160 }
CorrelationParameter m_correlationParameter

Friends And Related Function Documentation

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

output stream operator

Definition at line 209 of file CorrelationTemplate.cc.

210 {
211  result.print(os);
212  return os;
213 
214 }
virtual void print(std::ostream &myCout) const
print the condition

Member Data Documentation

l1t::GtConditionCategory CorrelationTemplate::m_cond0Category
private
int CorrelationTemplate::m_cond0Index
private

Definition at line 130 of file CorrelationTemplate.h.

Referenced by cond0Index(), copy(), CorrelationTemplate(), print(), and setCond0Index().

l1t::GtConditionCategory CorrelationTemplate::m_cond1Category
private
int CorrelationTemplate::m_cond1Index
private

Definition at line 131 of file CorrelationTemplate.h.

Referenced by cond1Index(), copy(), CorrelationTemplate(), print(), and setCond1Index().

CorrelationParameter CorrelationTemplate::m_correlationParameter
private

Definition at line 132 of file CorrelationTemplate.h.

Referenced by copy(), correlationParameter(), print(), and setCorrelationParameter().