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 | Static Private Attributes
HcalTTPDigiProducer Class Reference

#include <HcalTTPDigiProducer.h>

Inheritance diagram for HcalTTPDigiProducer:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 HcalTTPDigiProducer (const edm::ParameterSet &ps)
 
virtual void produce (edm::Event &e, const edm::EventSetup &c)
 
virtual ~HcalTTPDigiProducer ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndex indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

bool decision (int nP, int nM, int bit)
 
bool isMasked (HcalDetId id)
 

Private Attributes

std::string bit_ [4]
 
int calc_ [4]
 
int fwAlgo_
 
edm::InputTag hfDigis_
 
int id_
 
int iEtaMax_
 
int iEtaMin_
 
std::vector< unsigned int > maskedChannels_
 
char mReq_ [4]
 
int nHFm_ [4]
 
int nHFp_ [4]
 
int nHits_ [4]
 
char pmLogic_ [4]
 
char pReq_ [4]
 
int presamples_
 
int samples_
 
int SoI_
 
unsigned int threshold_
 

Static Private Attributes

static const int inputs_ []
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
typedef WorkerT< EDProducerWorkerType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDProducer
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 10 of file HcalTTPDigiProducer.h.

Constructor & Destructor Documentation

HcalTTPDigiProducer::HcalTTPDigiProducer ( const edm::ParameterSet ps)
explicit

Definition at line 24 of file HcalTTPDigiProducer.cc.

References bit_, calc_, edm::hlt::Exception, fwAlgo_, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), hfDigis_, i, id_, iEtaMax_, iEtaMin_, maskedChannels_, mReq_, nHFm_, nHFp_, nHits_, pmLogic_, pReq_, presamples_, samples_, SoI_, AlCaHLTBitMon_QueryRunRegistry::string, and threshold_.

25 {
26  hfDigis_ = ps.getParameter<edm::InputTag>("HFDigiCollection") ;
27  maskedChannels_ = ps.getParameter< std::vector<unsigned int> >("maskedChannels") ;
28  bit_[0] = ps.getParameter<std::string>("defTT8") ;
29  bit_[1] = ps.getParameter<std::string>("defTT9") ;
30  bit_[2] = ps.getParameter<std::string>("defTT10") ;
31  bit_[3] = ps.getParameter<std::string>("defTTLocal") ;
32 
33  for (int i=0; i<4; i++) {
34  nHits_[i] = -1 ; nHFp_[i] = -1 ; nHFm_[i] = -1 ;
35  pReq_[i] = ' ' ; mReq_[i] = ' ' ; pmLogic_[i] = ' ' ;
36  calc_[i] = sscanf(bit_[i].c_str(),"hits>=%d:hfp%c=%d%chfm%c=%d",
37  &(nHits_[i]),&(pReq_[i]),&(nHFp_[i]),
38  &(pmLogic_[i]),&(mReq_[i]),&(nHFm_[i])) ;
39  if ( calc_[i] == 1 ) {
40  if ( nHits_[i] < 0 )
41  throw cms::Exception("HcalTTPDigiProducer")
42  << "Unable to read logic for technical trigger" ;
43  } else if ( calc_[i] == 6 ) {
44  if ( nHits_[i] < 0 || nHFp_[i] < 0 || nHFm_[i] < 0 )
45  throw cms::Exception("HcalTTPDigiProducer")
46  << "Unable to read logic for technical trigger" ;
47  if ( (pReq_[i] != '>' && pReq_[i] != '<') ||
48  (mReq_[i] != '>' && mReq_[i] != '<') ||
49  (pmLogic_[i] != ':' && pmLogic_[i] != '|') )
50  throw cms::Exception("HcalTTPDigiProducer")
51  << "Technical Trigger logic must obey the following format:\n"
52  "\"hits>=[A1]:hfp[B1]=[A2][C]hfm[B2]=[A3]\",\n"
53  "or \"hits>=[A1]\",\n"
54  "with A# >= 0, B# = (</>) and C = (:/|)" ;
55  } else {
56  throw cms::Exception("HcalTTPDigiProducer")
57  << "Unable to read logic for technical trigger" ;
58  }
59  }
60 
61  id_ = ps.getUntrackedParameter<int>("id",-1) ;
62  samples_ = ps.getParameter<int>("samples") ;
63  presamples_ = ps.getParameter<int>("presamples") ;
64  iEtaMin_ = ps.getParameter<int>("iEtaMin") ;
65  iEtaMax_ = ps.getParameter<int>("iEtaMax") ;
66  threshold_ = ps.getParameter<unsigned int>("threshold") ;
67  fwAlgo_ = ps.getParameter<int>("fwAlgorithm") ;
68 
69  SoI_ = ps.getParameter<int>("HFSoI") ;
70 
71  if ( samples_ > 8 ) {
72  samples_ = 8 ;
73  edm::LogWarning("HcalTTPDigiProducer") << "Samples forced to maximum value of 8" ;
74  }
75  if ( presamples_ - SoI_ > 0 ) { // Too many presamples
76  presamples_ = SoI_ ;
77  edm::LogWarning("HcalTTPDigiProducer") << "Presamples reset to HF SoI value" ;
78  }
79 
80  produces<HcalTTPDigiCollection>();
81 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
int i
Definition: DBlmapReader.cc:9
std::vector< unsigned int > maskedChannels_
HcalTTPDigiProducer::~HcalTTPDigiProducer ( )
virtual

Definition at line 84 of file HcalTTPDigiProducer.cc.

84  {
85 }

Member Function Documentation

bool HcalTTPDigiProducer::decision ( int  nP,
int  nM,
int  bit 
)
private

Definition at line 94 of file HcalTTPDigiProducer.cc.

References calc_, funct::false, mReq_, nHFm_, nHFp_, nHits_, pmLogic_, and pReq_.

Referenced by produce().

94  {
95 
96  bool pOK = false ; bool mOK = false ;
97  if ( (nP + nM) < nHits_[bit] ) return false ;
98  if ( calc_[bit] == 1 ) return ( (nP + nM) >= nHits_[bit] ) ;
99 
100  if ( pReq_[bit] == '>' ) pOK = ( nP >= nHFp_[bit] ) ;
101  else if ( pReq_[bit] == '<' ) pOK = ( nP <= nHFp_[bit] ) ;
102 
103  if ( mReq_[bit] == '>' ) mOK = ( nM >= nHFm_[bit] ) ;
104  else if ( mReq_[bit] == '<' ) mOK = ( nM <= nHFm_[bit] ) ;
105 
106  if ( pmLogic_[bit] == ':' ) return ( pOK && mOK ) ;
107  else if ( pmLogic_[bit] == '|' ) return ( pOK || mOK ) ;
108 
109  // Should not ever get here...need to create a warning message
110  edm::LogWarning("HcalTTPDigiProducer") << "Trigger logic exhausted. Returning false" ;
111  return false ;
112 }
bool HcalTTPDigiProducer::isMasked ( HcalDetId  id)
private

Definition at line 87 of file HcalTTPDigiProducer.cc.

References funct::false, i, and maskedChannels_.

Referenced by produce().

87  {
88 
89  for ( unsigned int i=0; i<maskedChannels_.size(); i++ )
90  if ( id.rawId() == maskedChannels_.at(i) ) return true ;
91  return false ;
92 }
int i
Definition: DBlmapReader.cc:9
std::vector< unsigned int > maskedChannels_
void HcalTTPDigiProducer::produce ( edm::Event e,
const edm::EventSetup c 
)
virtual

Implements edm::EDProducer.

Definition at line 114 of file HcalTTPDigiProducer.cc.

References decision(), fwAlgo_, edm::EventSetup::get(), edm::Event::getByLabel(), hfDigis_, i, id_, iEtaMax_, iEtaMin_, inputs_, isMasked(), j, evf::evtn::offset(), presamples_, edm::Event::put(), samples_, HcalTTPDigi::setSample(), edm::shift, SoI_, and threshold_.

114  {
115 
116  // Step A: Get Inputs
117  edm::Handle<HFDigiCollection> hfDigiCollection ;
118  e.getByLabel(hfDigis_,hfDigiCollection) ;
119  edm::ESHandle<HcalTPGCoder> inputCoder ;
120  eventSetup.get<HcalTPGRecord>().get(inputCoder) ;
121 
122  // Step B: Create empty output
123  std::auto_ptr<HcalTTPDigiCollection> ttpResult(new HcalTTPDigiCollection()) ;
124 
125  // Step C: Compute TTP inputs
126  uint16_t trigInputs[40] ;
127  int nP[8] ; int nM[8] ;
128  for (int i=0; i<8; i++) {
129  nP[i] = 0 ; nM[i] = 0 ;
130  for (int j=0; j<5; j++) trigInputs[j*8+i] = 0 ;
131  }
132  for (HFDigiCollection::const_iterator theDigi=hfDigiCollection->begin();
133  theDigi!=hfDigiCollection->end(); theDigi++) {
134  HcalDetId id = HcalDetId(theDigi->id()) ;
135  if ( isMasked(id) ) continue ;
136  if ( id.ietaAbs() < iEtaMin_ || id.ietaAbs() > iEtaMax_ ) continue ;
137 
138  IntegerCaloSamples samples(id,theDigi->size()) ;
139  inputCoder->adc2Linear(*theDigi,samples) ;
140 
141  for (int relSample=-presamples_; relSample<(samples_-presamples_); relSample++) {
142  if ( samples[SoI_+relSample] >= threshold_ ) {
143  int linSample = presamples_ + relSample ;
144  int offset = (-1+id.zside())/2 ;
145  int shift = inputs_[id.iphi()+offset] ;
146  int group = 0 ;
147  while ( shift >= 16 ) { shift -= 16 ; group++ ; }
148  if ( !(trigInputs[(linSample*8)+group]&(1<<shift)) )
149  ( id.ieta() > 0 ) ? ( nP[linSample]++) : ( nM[linSample]++ ) ;
150  trigInputs[(linSample*8)+group] |= (1<<shift) ;
151  }
152  }
153  }
154 
155  // Step D: Compute trigger decision and fill TTP digi
156  uint8_t trigOutput[8] ;
157  uint32_t algoDepBits[8] ;
159  for (int linSample=0; linSample<8; linSample++) {
160  trigOutput[linSample] = 0 ; algoDepBits[linSample] = 0 ;
161  if ( linSample<samples_) {
162  for (int j=0; j<4; j++)
163  trigOutput[linSample] |= (decision(nP[linSample],nM[linSample],j)<<j) ;
164  int nT = nP[linSample] + nM[linSample] ;
165 
166  // Algorithm Dependent bits for FW flavor = 1
167  // NOTE: this disagrees with the fw var. names that implies (LSB) T,M,P (MSB)
168  if ( fwAlgo_ == 1 ) algoDepBits[linSample] = (nT&0x7F) | ((nP[linSample]&0x3F)<<7) | ((nM[linSample]&0x3F)<<13) ;
169  ttpDigi.setSample((linSample-presamples_),&trigInputs[linSample*8],algoDepBits[linSample],trigOutput[linSample]) ;
170  }
171  }
172  ttpResult->push_back( ttpDigi ) ;
173 
174  // Step E: Put outputs into event
175  e.put(ttpResult);
176 }
int i
Definition: DBlmapReader.cc:9
std::vector< T >::const_iterator const_iterator
bool isMasked(HcalDetId id)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:94
static const int inputs_[]
int j
Definition: DBlmapReader.cc:9
bool decision(int nP, int nM, int bit)
unsigned int offset(bool)
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:361
edm::SortedCollection< HcalTTPDigi > HcalTTPDigiCollection
static unsigned int const shift

Member Data Documentation

std::string HcalTTPDigiProducer::bit_[4]
private

Definition at line 26 of file HcalTTPDigiProducer.h.

Referenced by HcalTTPDigiProducer().

int HcalTTPDigiProducer::calc_[4]
private

Definition at line 27 of file HcalTTPDigiProducer.h.

Referenced by decision(), and HcalTTPDigiProducer().

int HcalTTPDigiProducer::fwAlgo_
private

Definition at line 31 of file HcalTTPDigiProducer.h.

Referenced by HcalTTPDigiProducer(), and produce().

edm::InputTag HcalTTPDigiProducer::hfDigis_
private

Definition at line 24 of file HcalTTPDigiProducer.h.

Referenced by HcalTTPDigiProducer(), and produce().

int HcalTTPDigiProducer::id_
private

Definition at line 30 of file HcalTTPDigiProducer.h.

Referenced by HcalTTPDigiProducer(), and produce().

int HcalTTPDigiProducer::iEtaMax_
private

Definition at line 32 of file HcalTTPDigiProducer.h.

Referenced by HcalTTPDigiProducer(), and produce().

int HcalTTPDigiProducer::iEtaMin_
private

Definition at line 32 of file HcalTTPDigiProducer.h.

Referenced by HcalTTPDigiProducer(), and produce().

const int HcalTTPDigiProducer::inputs_
staticprivate
Initial value:
= { 30,66,4,44,4,44,0,68,
0,68,16,48,16,48,6,46,
6,46,2,70,2,70,18,50,
18,50,12,40,12,40,8,52,
8,52,20,36,20,36,14,42,
14,42,10,54,10,54,22,38,
22,38,24,56,24,56,32,60,
32,60,28,64,28,64,26,58,
26,58,34,62,34,62,30,66 }

Definition at line 37 of file HcalTTPDigiProducer.h.

Referenced by produce().

std::vector<unsigned int> HcalTTPDigiProducer::maskedChannels_
private

Definition at line 25 of file HcalTTPDigiProducer.h.

Referenced by HcalTTPDigiProducer(), and isMasked().

char HcalTTPDigiProducer::mReq_[4]
private

Definition at line 29 of file HcalTTPDigiProducer.h.

Referenced by decision(), and HcalTTPDigiProducer().

int HcalTTPDigiProducer::nHFm_[4]
private

Definition at line 28 of file HcalTTPDigiProducer.h.

Referenced by decision(), and HcalTTPDigiProducer().

int HcalTTPDigiProducer::nHFp_[4]
private

Definition at line 28 of file HcalTTPDigiProducer.h.

Referenced by decision(), and HcalTTPDigiProducer().

int HcalTTPDigiProducer::nHits_[4]
private

Definition at line 28 of file HcalTTPDigiProducer.h.

Referenced by decision(), and HcalTTPDigiProducer().

char HcalTTPDigiProducer::pmLogic_[4]
private

Definition at line 29 of file HcalTTPDigiProducer.h.

Referenced by decision(), and HcalTTPDigiProducer().

char HcalTTPDigiProducer::pReq_[4]
private

Definition at line 29 of file HcalTTPDigiProducer.h.

Referenced by decision(), and HcalTTPDigiProducer().

int HcalTTPDigiProducer::presamples_
private

Definition at line 30 of file HcalTTPDigiProducer.h.

Referenced by HcalTTPDigiProducer(), and produce().

int HcalTTPDigiProducer::samples_
private

Definition at line 30 of file HcalTTPDigiProducer.h.

Referenced by HcalTTPDigiProducer(), and produce().

int HcalTTPDigiProducer::SoI_
private

Definition at line 35 of file HcalTTPDigiProducer.h.

Referenced by HcalTTPDigiProducer(), and produce().

unsigned int HcalTTPDigiProducer::threshold_
private

Definition at line 33 of file HcalTTPDigiProducer.h.

Referenced by HcalTTPDigiProducer(), and produce().