CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
EcalUncalibRecHitRecWeightsAlgo< C > Class Template Reference

#include <EcalUncalibRecHitRecWeightsAlgo.h>

Public Member Functions

virtual EcalUncalibratedRecHit makeRecHit (const C &dataFrame, const double *pedestals, const double *pedestalsRMS, const double *gainRatios, const EcalWeightSet::EcalWeightMatrix **weights, const EcalShapeBase &testbeamPulseShape)
 Compute parameters. More...
 
virtual ~EcalUncalibRecHitRecWeightsAlgo ()
 

Detailed Description

template<class C>
class EcalUncalibRecHitRecWeightsAlgo< C >

Template used to compute amplitude, pedestal, time jitter, chi2 of a pulse using a weights method

Author
R. Bruneliere - A. Zabi

The chi2 computation with matrix is replaced by the chi2express which is moved outside the weight algo (need to clean up the interface in next iteration so that we do not pass-by useless arrays)

Template used to compute amplitude, pedestal, time jitter, chi2 of a pulse using a weights method

Author
R. Bruneliere - A. Zabi

Definition at line 23 of file EcalUncalibRecHitRecWeightsAlgo.h.

Constructor & Destructor Documentation

template<class C>
virtual EcalUncalibRecHitRecWeightsAlgo< C >::~EcalUncalibRecHitRecWeightsAlgo ( )
inlinevirtual

Definition at line 27 of file EcalUncalibRecHitRecWeightsAlgo.h.

27 { };

Member Function Documentation

template<class C>
virtual EcalUncalibratedRecHit EcalUncalibRecHitRecWeightsAlgo< C >::makeRecHit ( const C &  dataFrame,
const double *  pedestals,
const double *  pedestalsRMS,
const double *  gainRatios,
const EcalWeightSet::EcalWeightMatrix **  weights,
const EcalShapeBase testbeamPulseShape 
)
inlinevirtual

Compute parameters.

Definition at line 30 of file EcalUncalibRecHitRecWeightsAlgo.h.

Referenced by EcalTBWeightUncalibRecHitProducer::produce(), EcalUncalibRecHitWorkerWeights::run(), and EcalUncalibRecHitWorkerGlobal::run().

37  {
38  double amplitude_(-1.), pedestal_(-1.), jitter_(-1.), chi2_(-1.);
39  uint32_t flag = 0;
40 
41 
42  // Get time samples
43  ROOT::Math::SVector<double,C::MAXSAMPLES> frame;
44  int gainId0 = 1;
45  int iGainSwitch = 0;
46  bool isSaturated = 0;
47  for(int iSample = 0; iSample < C::MAXSAMPLES; iSample++) {
48  int gainId = dataFrame.sample(iSample).gainId();
49  //Handling saturation (treating saturated gainId as maximum gain)
50  if ( gainId == 0 )
51  {
52  gainId = 3;
53  //isSaturated = 1;
54  // in pileup run May2012 samples 7,8,9,10 have gainid ==0
55  // fix it like this: it won't hurt for the future SA20120512
56  if(iSample==4 || iSample ==5 || iSample==6) isSaturated = 1;
57  }
58 
59  // if (gainId != gainId0) iGainSwitch = 1;
60  // same problem as above: mark saturation only when physically
61  // expected to occur SA20120513
62  if ( (gainId != gainId0) && (iSample==4 || iSample ==5 || iSample==6) ) iGainSwitch = 1;
63  if (!iGainSwitch)
64  frame(iSample) = double(dataFrame.sample(iSample).adc());
65  else
66  frame(iSample) = double(((double)(dataFrame.sample(iSample).adc()) - pedestals[gainId-1]) * gainRatios[gainId-1]);
67  }
68 
69  // Compute parameters
70  ROOT::Math::SVector <double,3> param = (*(weights[iGainSwitch])) * frame;
73  if (amplitude_) jitter_ = -param(EcalUncalibRecHitRecAbsAlgo<C>::iTime) / amplitude_;
74  else jitter_ = 0.;
75 
76  //When saturated gain flag i
77  if (isSaturated)
78  {
80  amplitude_ = double((4095. - pedestals[2]) * gainRatios[2]);
81  }
82  return EcalUncalibratedRecHit( dataFrame.id(), amplitude_, pedestal_, jitter_, chi2_, flag);
83  }
int gainId(sample_type sample)
get the gainId (2 bits)
bool isSaturated(const Digi &digi, const int &maxADCvalue, int ifirst, int n)