CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
reco::EgammaTrigger Class Reference

#include <DataFormats/EgammaReco/interface/EgammaTrigger.h>

Public Member Functions

 EgammaTrigger ()
 default constructor More...
 
 EgammaTrigger (bool, bool, bool, bool)
 constructor from boolean values More...
 
unsigned char l1word () const
 return the trigger work More...
 
template<unsigned char L1>
bool match ()
 
template<unsigned char L1>
void set ()
 

Private Attributes

unsigned char l1word_
 trigger work (packed). Only 4 bits are used. More...
 

Detailed Description

Egamma trigger bit set

Author
Luca Lista, INFN

Definition at line 25 of file EgammaTrigger.h.

Constructor & Destructor Documentation

reco::EgammaTrigger::EgammaTrigger ( )
inline

default constructor

Definition at line 28 of file EgammaTrigger.h.

28 : l1word_( 0 ) { }
unsigned char l1word_
trigger work (packed). Only 4 bits are used.
Definition: EgammaTrigger.h:52
EgammaTrigger::EgammaTrigger ( bool  matchL1Single,
bool  matchL1Double,
bool  matchL1RelaxedDouble,
bool  matchIsolatedL1 
)

constructor from boolean values

Definition at line 4 of file EgammaTrigger.cc.

References reco::egamma::IsolatedL1, reco::egamma::L1Double, reco::egamma::L1RelaxedDouble, reco::egamma::L1Single, and l1word_.

5  :
6  l1word_( 0 ) {
7  if ( matchL1Single ) l1word_ |= 1 << egamma::L1Single;
8  if ( matchL1Double ) l1word_ |= 1 << egamma::L1Double;
9  if ( matchL1RelaxedDouble ) l1word_ |= 1 << egamma::L1RelaxedDouble;
10  if ( matchIsolatedL1 ) l1word_ |= 1 << egamma::IsolatedL1;
11 }
unsigned char l1word_
trigger work (packed). Only 4 bits are used.
Definition: EgammaTrigger.h:52

Member Function Documentation

unsigned char reco::EgammaTrigger::l1word ( ) const
inline

return the trigger work

Definition at line 48 of file EgammaTrigger.h.

48 { return l1word_; }
unsigned char l1word_
trigger work (packed). Only 4 bits are used.
Definition: EgammaTrigger.h:52
template<unsigned char L1>
bool reco::EgammaTrigger::match ( )
inline

returns the trigger bit at positon L1 (L1 = 0, ..., 3) L1 couls be one of the enumerator defined in egamma namespace

Definition at line 36 of file EgammaTrigger.h.

36  {
38  }
unsigned char l1word_
trigger work (packed). Only 4 bits are used.
Definition: EgammaTrigger.h:52
template<unsigned char L1>
void reco::EgammaTrigger::set ( )
inline

sets to 1 the trigger bit at positon L1 (L1 = 0, ..., 3) L1 couls be one of the enumerator defined in egamma namespace

Definition at line 43 of file EgammaTrigger.h.

43  {
45  }
unsigned char l1word_
trigger work (packed). Only 4 bits are used.
Definition: EgammaTrigger.h:52

Member Data Documentation

unsigned char reco::EgammaTrigger::l1word_
private

trigger work (packed). Only 4 bits are used.

Definition at line 52 of file EgammaTrigger.h.

Referenced by EgammaTrigger().