CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
l1t::EnergySumCondition Class Reference

#include <EnergySumCondition.h>

Inheritance diagram for l1t::EnergySumCondition:
l1t::ConditionEvaluation

Public Member Functions

 EnergySumCondition ()
 
 EnergySumCondition (const GlobalCondition *, const GlobalBoard *)
 from base template condition (from event setup usually) More...
 
 EnergySumCondition (const EnergySumCondition &)
 
const bool evaluateCondition (const int bxEval) const override
 the core function to check if the condition matches More...
 
const GlobalBoardgetuGtB () const
 get / set the pointer to uGt GlobalBoard More...
 
const EnergySumTemplategtEnergySumTemplate () const
 get / set the pointer to a L1GtCondition More...
 
EnergySumConditionoperator= (const EnergySumCondition &)
 
void print (std::ostream &myCout) const override
 print condition More...
 
void setGtEnergySumTemplate (const EnergySumTemplate *)
 
void setuGtB (const GlobalBoard *)
 set the pointer to uGT GlobalBoard More...
 
 ~EnergySumCondition () override
 
- Public Member Functions inherited from l1t::ConditionEvaluation
 ConditionEvaluation ()
 constructor More...
 
bool condLastResult () const
 get the latest result for the condition More...
 
int condMaxNumberObjects () const
 
void evaluateConditionStoreResult (const int bxEval)
 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...
 
void setCondMaxNumberObjects (int condMaxNumberObjectsValue)
 
void setVerbosity (const int verbosity)
 
virtual ~ConditionEvaluation ()
 destructor More...
 

Private Member Functions

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

Private Attributes

const EnergySumTemplatem_gtEnergySumTemplate
 pointer to a EnergySumTemplate More...
 
const GlobalBoardm_uGtB
 pointer to uGt GlobalBoard, to be able to get the trigger objects More...
 

Additional Inherited Members

- Protected Member Functions inherited from l1t::ConditionEvaluation
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 >
const bool checkIndex (const Type1 &indexLo, const Type1 &indexHi, const unsigned int index) const
 check if a index is in a given range More...
 
template<class Type1 >
const bool checkRangeDeltaEta (const unsigned int obj1Eta, const unsigned int obj2Eta, const Type1 &lowerR, const Type1 &upperR, const unsigned int nEtaBits) const
 check if a value is in a given range More...
 
template<class Type1 >
const bool checkRangeDeltaPhi (const unsigned int obj1Phi, const unsigned int obj2Phi, const Type1 &lowerR, const Type1 &upperR) const
 check if a value is in a given range More...
 
template<class Type1 >
const bool checkRangeEta (const unsigned int bitNumber, const Type1 &W1beginR, const Type1 &W1endR, const Type1 &W2beginR, const Type1 &W2endR, const unsigned int nEtaBits) const
 check if a value is in a given range and outside of a veto range More...
 
template<class Type1 >
const bool checkRangePhi (const unsigned int bitNumber, const Type1 &W1beginR, const Type1 &W1endR, const Type1 &W2beginR, const Type1 &W2endR) const
 check if a value is in a given range and outside of a veto range More...
 
template<class Type1 , class Type2 >
const bool checkThreshold (const Type1 &thresholdL, const Type1 &thresholdH, const Type2 &value, bool condGEqValue) const
 
CombinationsInCondcombinationsInCond () const
 get all the object combinations (to fill it...) More...
 
- Protected Attributes inherited from l1t::ConditionEvaluation
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

Definition at line 37 of file EnergySumCondition.h.

Constructor & Destructor Documentation

EnergySumCondition::EnergySumCondition ( )

constructors default

Definition at line 36 of file EnergySumCondition.cc.

36  :
38 
39  //empty
40 
41 }
EnergySumCondition::EnergySumCondition ( const GlobalCondition eSumTemplate,
const GlobalBoard ptrGTB 
)

from base template condition (from event setup usually)

Definition at line 44 of file EnergySumCondition.cc.

References l1t::ConditionEvaluation::m_condMaxNumberObjects.

44  :
46  m_gtEnergySumTemplate(static_cast<const EnergySumTemplate*>(eSumTemplate)),
47  m_uGtB(ptrGTB)
48 
49 {
50 
51  // maximum number of objects received for the evaluation of the condition
52  // energy sums are global quantities - one object per event
53 
55 
56 }
const GlobalBoard * m_uGtB
pointer to uGt GlobalBoard, to be able to get the trigger objects
const EnergySumTemplate * m_gtEnergySumTemplate
pointer to a EnergySumTemplate
EnergySumCondition::EnergySumCondition ( const EnergySumCondition cp)

Definition at line 72 of file EnergySumCondition.cc.

References copy().

72  :
74 
75  copy(cp);
76 
77 }
void copy(const EnergySumCondition &cp)
copy function for copy constructor and operator=
EnergySumCondition::~EnergySumCondition ( )
override

Definition at line 80 of file EnergySumCondition.cc.

80  {
81 
82  // empty
83 
84 }

Member Function Documentation

void EnergySumCondition::copy ( const EnergySumCondition cp)
private

copy function for copy constructor and operator=

Definition at line 59 of file EnergySumCondition.cc.

References l1t::ConditionEvaluation::condLastResult(), l1t::ConditionEvaluation::condMaxNumberObjects(), l1t::ConditionEvaluation::getCombinationsInCond(), getuGtB(), gtEnergySumTemplate(), l1t::ConditionEvaluation::m_combinationsInCond, l1t::ConditionEvaluation::m_condLastResult, l1t::ConditionEvaluation::m_condMaxNumberObjects, m_gtEnergySumTemplate, m_uGtB, and l1t::ConditionEvaluation::m_verbosity.

Referenced by EnergySumCondition(), getuGtB(), and operator=().

59  {
60 
61  m_gtEnergySumTemplate = cp.gtEnergySumTemplate();
62  m_uGtB = cp.getuGtB();
63 
64  m_condMaxNumberObjects = cp.condMaxNumberObjects();
65  m_condLastResult = cp.condLastResult();
66  m_combinationsInCond = cp.getCombinationsInCond();
67 
68  m_verbosity = cp.m_verbosity;
69 
70 }
const GlobalBoard * m_uGtB
pointer to uGt GlobalBoard, to be able to get the trigger objects
const EnergySumTemplate * m_gtEnergySumTemplate
pointer to a EnergySumTemplate
CombinationsInCond m_combinationsInCond
store all the object combinations evaluated to true in the condition
int m_verbosity
verbosity level
bool m_condLastResult
the last result of evaluateCondition()
const bool EnergySumCondition::evaluateCondition ( const int  bxEval) const
overridevirtual

the core function to check if the condition matches

Implements l1t::ConditionEvaluation.

Definition at line 108 of file EnergySumCondition.cc.

References BXVector< T >::at(), l1t::ConditionEvaluation::checkRangePhi(), l1t::ConditionEvaluation::checkThreshold(), hitfit::clear(), l1t::ConditionEvaluation::combinationsInCond(), GlobalCondition::condGEq(), GlobalCondition::condRelativeBx(), EnergySumTemplate::ObjectParameter::etHighThreshold, EnergySumTemplate::ObjectParameter::etLowThreshold, l1t::GlobalBoard::getCandL1EtSum(), BXVector< T >::getLastBX(), l1t::EtSum::getType(), l1t::gtETM, l1t::gtETMHF, l1t::gtETT, l1t::gtETTem, l1t::gtHTM, l1t::gtHTT, l1t::gtMinBiasHFM0, l1t::gtMinBiasHFM1, l1t::gtMinBiasHFP0, l1t::gtMinBiasHFP1, l1t::gtTowerCount, l1t::L1Candidate::hwPhi(), l1t::L1Candidate::hwPt(), L1Analysis::kMinBiasHFM0, L1Analysis::kMinBiasHFM1, L1Analysis::kMinBiasHFP0, L1Analysis::kMinBiasHFP1, L1Analysis::kMissingEt, L1Analysis::kMissingEtHF, L1Analysis::kMissingHt, L1Analysis::kTotalEt, L1Analysis::kTotalEtEm, L1Analysis::kTotalHt, L1Analysis::kTowerCount, LogDebug, m_gtEnergySumTemplate, m_uGtB, EnergySumTemplate::objectParameter(), GlobalCondition::objectType(), EnergySumTemplate::ObjectParameter::phiWindow1Lower, EnergySumTemplate::ObjectParameter::phiWindow1Upper, EnergySumTemplate::ObjectParameter::phiWindow2Lower, EnergySumTemplate::ObjectParameter::phiWindow2Upper, and BXVector< T >::size().

108  {
109 
110  // number of trigger objects in the condition
111  // in fact, there is only one object
112  int iCondition = 0;
113 
114  // condition result condResult set to true if the energy sum
115  // passes all requirements
116  bool condResult = false;
117 
118  // store the indices of the calorimeter objects
119  // from the combination evaluated in the condition
120  SingleCombInCond objectsInComb;
121 
122  // clear the m_combinationsInCond vector
124 
125  // clear the indices in the combination
126  objectsInComb.clear();
127 
129 
130  // Look at objects in bx = bx + relativeBx
131  int useBx = bxEval + m_gtEnergySumTemplate->condRelativeBx();
132 
133  // Fail condition if attempting to get Bx outside of range
134  if( ( useBx < candVec->getFirstBX() ) ||
135  ( useBx > candVec->getLastBX() ) ) {
136  return false;
137  }
138 
139  // If no candidates, no use looking any further.
140  int numberObjects = candVec->size(useBx);
141  if (numberObjects < 1) {
142  return false;
143  }
144 
145 
147  bool MissingEnergy = false;
148  switch( (m_gtEnergySumTemplate->objectType())[0] ){
149  case gtETM:
151  MissingEnergy = true;
152  break;
153  case gtETT:
155  MissingEnergy = false;
156  break;
157  case gtETTem:
159  MissingEnergy = false;
160  break;
161  case gtHTM:
163  MissingEnergy = true;
164  break;
165  case gtHTT:
167  MissingEnergy = false;
168  break;
169  case gtETMHF:
171  MissingEnergy = true;
172  break;
173  case gtTowerCount:
175  MissingEnergy = false;
176  break;
177  case gtMinBiasHFP0:
179  MissingEnergy = false;
180  break;
181  case gtMinBiasHFM0:
183  MissingEnergy = false;
184  break;
185  case gtMinBiasHFP1:
187  MissingEnergy = false;
188  break;
189  case gtMinBiasHFM1:
191  MissingEnergy = false;
192  break;
193  default:
194  edm::LogError("L1TGlobal")
195  << "\n Error: "
196  << "Unmatched object type from template to EtSumType, (m_gtEnergySumTemplate->objectType())[0] = "
198  << std::endl;
200  break;
201  }
202 
203 
204  // get energy, phi (ETM and HTM) and overflow for the trigger object
205  unsigned int candEt = 0;
206  unsigned int candPhi = 0;
207  bool candOverflow = false;
208  for( int iEtSum = 0; iEtSum < numberObjects; ++iEtSum ){
209  l1t::EtSum cand = *(candVec->at(useBx,iEtSum));
210  if( cand.getType() != type ) continue;
211  candEt = cand.hwPt();
212  candPhi = cand.hwPhi();
213  }
214 
215 
217  ( *(m_gtEnergySumTemplate->objectParameter()) )[iCondition];
218 
219  // check energy threshold and overflow
220  // overflow evaluation:
221  // for condGEq >=
222  // candidate overflow true -> condition true
223  // candidate overflow false -> evaluate threshold
224  // for condGEq =
225  // candidate overflow true -> condition false
226  // candidate overflow false -> evaluate threshold
227  //
228 
229  bool condGEqVal = m_gtEnergySumTemplate->condGEq();
230 
231  // check energy threshold
232  if ( !checkThreshold(objPar.etLowThreshold, objPar.etHighThreshold, candEt, condGEqVal) ) {
233  LogDebug("L1TGlobal") << "\t\t l1t::EtSum failed checkThreshold" << std::endl;
234  return false;
235  }
236 
237  if( !condGEqVal && candOverflow ) return false;
238 
239  // for ETM and HTM check phi also
240  // for overflow, the phi requirements are ignored
241  if( MissingEnergy ){
242  // check phi
243  if( !checkRangePhi(candPhi, objPar.phiWindow1Lower, objPar.phiWindow1Upper, objPar.phiWindow2Lower, objPar.phiWindow2Upper) ){
244  LogDebug("L1TGlobal") << "\t\t l1t::EtSum failed checkRange(phi)" << std::endl;
245  return false;
246  }
247  }
248 
249 
250  // index is always zero, as they are global quantities (there is only one object)
251  int indexObj = 0;
252 
253  objectsInComb.push_back(indexObj);
254  (combinationsInCond()).push_back(objectsInComb);
255 
256  // if we get here all checks were successfull for this combination
257  // set the general result for evaluateCondition to "true"
258 
259  condResult = true;
260  return condResult;
261 
262 }
#define LogDebug(id)
type
Definition: HCALResponse.h:21
unsigned size(int bx) const
const GlobalBoard * m_uGtB
pointer to uGt GlobalBoard, to be able to get the trigger objects
std::vector< int > SingleCombInCond
typedefs
const bool condGEq() const
get / set condition GEq flag
int hwPhi() const
Definition: L1Candidate.h:50
const bool checkThreshold(const Type1 &thresholdL, const Type1 &thresholdH, const Type2 &value, bool condGEqValue) const
const std::vector< ObjectParameter > * objectParameter() const
const int & condRelativeBx() const
get / set the condition relative bx
const EnergySumTemplate * m_gtEnergySumTemplate
pointer to a EnergySumTemplate
const std::vector< l1t::GlobalObject > & objectType() const
get / set the trigger object type(s) in the condition
void clear(CLHEP::HepGenMatrix &m)
Helper function: Reset all elements of a matrix to 0.
Definition: matutil.cc:167
const BXVector< const l1t::EtSum * > * getCandL1EtSum() const
pointer to Tau data list
Definition: GlobalBoard.h:168
typedef for a single object template
int hwPt() const
Definition: L1Candidate.h:48
int getLastBX() const
EtSumType getType() const
Definition: EtSum.cc:37
EtSumType
Definition: EtSum.h:25
CombinationsInCond & combinationsInCond() const
get all the object combinations (to fill it...)
const bool checkRangePhi(const unsigned int bitNumber, const Type1 &W1beginR, const Type1 &W1endR, const Type1 &W2beginR, const Type1 &W2endR) const
check if a value is in a given range and outside of a veto range
const T & at(int bx, unsigned i) const
const GlobalBoard* l1t::EnergySumCondition::getuGtB ( ) const
inline

get / set the pointer to uGt GlobalBoard

Definition at line 76 of file EnergySumCondition.h.

References copy(), SimDataFormats::CaloAnalysis::cp, m_uGtB, and setuGtB().

Referenced by copy().

76  {
77  return m_uGtB;
78  }
const GlobalBoard * m_uGtB
pointer to uGt GlobalBoard, to be able to get the trigger objects
const EnergySumTemplate* l1t::EnergySumCondition::gtEnergySumTemplate ( ) const
inline

get / set the pointer to a L1GtCondition

Definition at line 69 of file EnergySumCondition.h.

References m_gtEnergySumTemplate, and setGtEnergySumTemplate().

Referenced by copy().

69  {
70  return m_gtEnergySumTemplate;
71  }
const EnergySumTemplate * m_gtEnergySumTemplate
pointer to a EnergySumTemplate
l1t::EnergySumCondition & EnergySumCondition::operator= ( const EnergySumCondition cp)

Definition at line 87 of file EnergySumCondition.cc.

References copy().

88 {
89  copy(cp);
90  return *this;
91 }
void copy(const EnergySumCondition &cp)
copy function for copy constructor and operator=
void EnergySumCondition::print ( std::ostream &  myCout) const
overridevirtual

print condition

Reimplemented from l1t::ConditionEvaluation.

Definition at line 264 of file EnergySumCondition.cc.

References m_gtEnergySumTemplate, EnergySumTemplate::print(), and l1t::ConditionEvaluation::print().

Referenced by l1t::CorrCondition::evaluateCondition(), l1t::CorrWithOverlapRemovalCondition::evaluateCondition(), and l1t::GlobalBoard::runGTL().

264  {
265 
266  m_gtEnergySumTemplate->print(myCout);
268 
269 }
virtual void print(std::ostream &myCout) const
print condition
const EnergySumTemplate * m_gtEnergySumTemplate
pointer to a EnergySumTemplate
void print(std::ostream &myCout) const override
print the condition
void EnergySumCondition::setGtEnergySumTemplate ( const EnergySumTemplate eSumTempl)

Definition at line 94 of file EnergySumCondition.cc.

References m_gtEnergySumTemplate.

Referenced by gtEnergySumTemplate().

94  {
95 
96  m_gtEnergySumTemplate = eSumTempl;
97 
98 }
const EnergySumTemplate * m_gtEnergySumTemplate
pointer to a EnergySumTemplate
void EnergySumCondition::setuGtB ( const GlobalBoard ptrGTB)

set the pointer to uGT GlobalBoard

Definition at line 101 of file EnergySumCondition.cc.

References m_uGtB.

Referenced by getuGtB().

101  {
102 
103  m_uGtB = ptrGTB;
104 
105 }
const GlobalBoard * m_uGtB
pointer to uGt GlobalBoard, to be able to get the trigger objects

Member Data Documentation

const EnergySumTemplate* l1t::EnergySumCondition::m_gtEnergySumTemplate
private
const GlobalBoard* l1t::EnergySumCondition::m_uGtB
private

pointer to uGt GlobalBoard, to be able to get the trigger objects

Definition at line 93 of file EnergySumCondition.h.

Referenced by copy(), evaluateCondition(), getuGtB(), and setuGtB().