CMS 3D CMS Logo

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

Linearisation for Fenix strip input: 16 bits corresponding to input EBDataFrame output: 18 bits. More...

#include <EcalFenixLinearizer.h>

Public Member Functions

 EcalFenixLinearizer (bool famos)
 
template<class T >
void process (const T &, std::vector< int > &)
 
void setParameters (uint32_t raw, const EcalTPGPedestals *ecaltpPed, const EcalTPGLinearizationConst *ecaltpLin, const EcalTPGCrystalStatus *ecaltpBadX)
 
virtual ~EcalFenixLinearizer ()
 

Private Member Functions

int process ()
 
int setInput (const EcalMGPASample &RawSam)
 

Private Attributes

const EcalTPGCrystalStatusCodebadXStatus_
 
int base_
 
bool famos_
 
int gainID_
 
bool init_
 
const
EcalTPGLinearizationConstant
linConsts_
 
int mult_
 
const EcalTPGPedestalpeds_
 
int shift_
 
int strip_
 
int uncorrectedSample_
 
std::vector< const
EcalTPGCrystalStatusCode * > 
vectorbadXStatus_
 

Detailed Description

Linearisation for Fenix strip input: 16 bits corresponding to input EBDataFrame output: 18 bits.

Definition at line 19 of file EcalFenixLinearizer.h.

Constructor & Destructor Documentation

EcalFenixLinearizer::EcalFenixLinearizer ( bool  famos)

Definition at line 9 of file EcalFenixLinearizer.cc.

EcalFenixLinearizer::~EcalFenixLinearizer ( )
virtual

Definition at line 11 of file EcalFenixLinearizer.cc.

References mps_fire::i, init_, and vectorbadXStatus_.

11  {
12  if (init_) {
13  for (int i = 0; i < (int)vectorbadXStatus_.size(); i++) {
14  delete vectorbadXStatus_[i];
15  }
16  }
17 }
std::vector< const EcalTPGCrystalStatusCode * > vectorbadXStatus_

Member Function Documentation

int EcalFenixLinearizer::process ( )
private

Definition at line 50 of file EcalFenixLinearizer.cc.

References base_, famos_, mult_, convertSQLitetoXML_cfg::output, shift_, and uncorrectedSample_.

Referenced by process(), and EcalFenixStrip::process_part1().

50  {
51  int output = (uncorrectedSample_ - base_); // Substract base
52  if (famos_ || output < 0)
53  return 0;
54 
55  if (output < 0)
56  return shift_ << 12; // FENIX bug(!)
57  output = (output * mult_) >> (shift_ + 2); // Apply multiplicative factor
58  if (output > 0X3FFFF)
59  output = 0X3FFFF; // Saturation if too high
60  return output;
61 }
template<class T >
void EcalFenixLinearizer::process ( const T df,
std::vector< int > &  output_percry 
)

Definition at line 52 of file EcalFenixLinearizer.h.

References mps_fire::i, process(), and setInput().

52  {
53  // We know a tower numbering is:
54  // S1 S2 S3 S4 S5
55  //
56  // 4 5 14 15 24
57  // 3 6 13 16 23
58  // 2 7 12 17 22
59  // 1 8 11 18 21
60  // 0 9 10 19 20
61  for (int i = 0; i < df.size(); i++) {
62  setInput(df[i]);
63  output_percry[i] = process();
64  }
65 
66  return;
67 }
int setInput(const EcalMGPASample &RawSam)
int EcalFenixLinearizer::setInput ( const EcalMGPASample RawSam)
private

Definition at line 63 of file EcalFenixLinearizer.cc.

References EcalMGPASample::adc(), badXStatus_, base_, famos_, EcalMGPASample::gainId(), gainID_, EcalTPGCrystalStatusCode::getStatusCode(), linConsts_, LogDebug, EcalTPGPedestal::mean_x1, EcalTPGPedestal::mean_x12, EcalTPGPedestal::mean_x6, mult_, EcalTPGLinearizationConstant::mult_x1, EcalTPGLinearizationConstant::mult_x12, EcalTPGLinearizationConstant::mult_x6, peds_, EcalMGPASample::raw(), shift_, EcalTPGLinearizationConstant::shift_x1, EcalTPGLinearizationConstant::shift_x12, EcalTPGLinearizationConstant::shift_x6, and uncorrectedSample_.

Referenced by process().

63  {
64  if (RawSam.raw() > 0X3FFF) {
65  LogDebug("EcalTPG") << "ERROR IN INPUT SAMPLE OF FENIX LINEARIZER";
66  return -1;
67  }
68  uncorrectedSample_ = RawSam.adc(); // uncorrectedSample_ is coded in the 12
69  // LSB
70  gainID_ = RawSam.gainId(); // uncorrectedSample_ is coded in the 2 next bits!
71  // if (gainID_==0) gainID_=3;
72 
73  if (gainID_ == 0) {
74  base_ = 0;
75  shift_ = 0;
76  mult_ = 0xFF;
77  if ((linConsts_->mult_x12 == 0) && (linConsts_->mult_x6 == 0) && (linConsts_->mult_x1 == 0)) {
78  mult_ = 0; // Implemented in CCSSupervisor to
79  // reject overflow cases in rejected channels
80  }
81  } else if (gainID_ == 1) {
82  base_ = peds_->mean_x12;
84 
85  // take into account the badX
86  // badXStatus_ == 0 if the crystal works
87  // badXStatus_ !=0 some problem with the crystal
88  if (badXStatus_->getStatusCode() != 0) {
89  mult_ = 0;
90  } else {
92  }
93  } else if (gainID_ == 2) {
94  base_ = peds_->mean_x6;
96 
97  // take into account the badX
98  // check if the badX has a status code=0 or 1
99  if (badXStatus_->getStatusCode() != 0) {
100  mult_ = 0;
101  } else {
103  }
104  } else if (gainID_ == 3) {
105  base_ = peds_->mean_x1;
107 
108  // take into account the badX
109  // check if the badX has a status code=0 or 1
110  if (badXStatus_->getStatusCode() != 0) {
111  mult_ = 0;
112  } else {
114  }
115  }
116 
117  if (famos_)
118  base_ = 200; // FIXME by preparing a correct TPG.txt for Famos
119 
120  return 1;
121 }
const EcalTPGPedestal * peds_
uint16_t raw() const
get the raw word
int gainId() const
get the gainId (2 bits)
const EcalTPGLinearizationConstant * linConsts_
const EcalTPGCrystalStatusCode * badXStatus_
int adc() const
get the ADC sample (12 bits)
#define LogDebug(id)
void EcalFenixLinearizer::setParameters ( uint32_t  raw,
const EcalTPGPedestals ecaltpPed,
const EcalTPGLinearizationConst ecaltpLin,
const EcalTPGCrystalStatus ecaltpBadX 
)

Definition at line 19 of file EcalFenixLinearizer.cc.

References badXStatus_, EcalCondObjectContainer< T >::end(), EcalCondObjectContainer< T >::find(), EcalCondObjectContainer< T >::getMap(), init_, linConsts_, peds_, and vectorbadXStatus_.

Referenced by EcalFenixStrip::process_part1().

22  {
23  const EcalTPGLinearizationConstMap &linMap = ecaltpLin->getMap();
25  if (it != linMap.end()) {
26  linConsts_ = &(*it);
27  } else
28  edm::LogWarning("EcalTPG") << " could not find EcalTPGLinearizationConstMap entry for " << raw;
29 
30  const EcalTPGPedestalsMap &pedMap = ecaltpPed->getMap();
31  EcalTPGPedestalsMapIterator itped = pedMap.find(raw);
32  if (itped != pedMap.end())
33  peds_ = &(*itped);
34  else
35  edm::LogWarning("EcalTPG") << " could not find EcalTPGPedestalsMap entry for " << raw;
36 
37  const EcalTPGCrystalStatusMap &badXMap = ecaltpBadX->getMap();
38  EcalTPGCrystalStatusMapIterator itbadX = badXMap.find(raw);
39 
40  if (itbadX != badXMap.end()) {
41  badXStatus_ = &(*itbadX);
42  } else {
43  edm::LogWarning("EcalTPG") << " could not find EcalTPGCrystalStatusMap entry for " << raw;
45  vectorbadXStatus_.push_back(&(*badXStatus_));
46  init_ = true;
47  }
48 }
EcalTPGPedestalsMap::const_iterator EcalTPGPedestalsMapIterator
const EcalTPGPedestal * peds_
const self & getMap() const
const EcalTPGLinearizationConstant * linConsts_
EcalCondObjectContainer< EcalTPGLinearizationConstant >::const_iterator EcalTPGLinearizationConstMapIterator
EcalTPGCrystalStatusMap::const_iterator EcalTPGCrystalStatusMapIterator
const EcalTPGCrystalStatusCode * badXStatus_
const_iterator find(uint32_t rawId) const
const_iterator end() const
Log< level::Warning, false > LogWarning
std::vector< const EcalTPGCrystalStatusCode * > vectorbadXStatus_

Member Data Documentation

const EcalTPGCrystalStatusCode* EcalFenixLinearizer::badXStatus_
private

Definition at line 32 of file EcalFenixLinearizer.h.

Referenced by setInput(), and setParameters().

int EcalFenixLinearizer::base_
private

Definition at line 24 of file EcalFenixLinearizer.h.

Referenced by process(), and setInput().

bool EcalFenixLinearizer::famos_
private

Definition at line 21 of file EcalFenixLinearizer.h.

Referenced by process(), and setInput().

int EcalFenixLinearizer::gainID_
private

Definition at line 23 of file EcalFenixLinearizer.h.

Referenced by setInput().

bool EcalFenixLinearizer::init_
private

Definition at line 28 of file EcalFenixLinearizer.h.

Referenced by setParameters(), and ~EcalFenixLinearizer().

const EcalTPGLinearizationConstant* EcalFenixLinearizer::linConsts_
private

Definition at line 30 of file EcalFenixLinearizer.h.

Referenced by setInput(), and setParameters().

int EcalFenixLinearizer::mult_
private

Definition at line 25 of file EcalFenixLinearizer.h.

Referenced by process(), and setInput().

const EcalTPGPedestal* EcalFenixLinearizer::peds_
private

Definition at line 31 of file EcalFenixLinearizer.h.

Referenced by setInput(), and setParameters().

int EcalFenixLinearizer::shift_
private

Definition at line 26 of file EcalFenixLinearizer.h.

Referenced by process(), and setInput().

int EcalFenixLinearizer::strip_
private

Definition at line 27 of file EcalFenixLinearizer.h.

int EcalFenixLinearizer::uncorrectedSample_
private

Definition at line 22 of file EcalFenixLinearizer.h.

Referenced by process(), and setInput().

std::vector<const EcalTPGCrystalStatusCode *> EcalFenixLinearizer::vectorbadXStatus_
private

Definition at line 34 of file EcalFenixLinearizer.h.

Referenced by setParameters(), and ~EcalFenixLinearizer().