CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalTimeSlewSim.cc
Go to the documentation of this file.
10 
11 #include "CLHEP/Random/RandGaussQ.h"
12 
13 HcalTimeSlewSim::HcalTimeSlewSim(const CaloVSimParameterMap * parameterMap, double minFCToDelay)
14  : theParameterMap(parameterMap),
15  minFCToDelay_(minFCToDelay)
16 {
17 }
18 
19 
20 // not quite adequate to 25ns high-PU regime
21 double HcalTimeSlewSim::charge(const CaloSamples & samples) const
22 {
23  double totalCharge = 0.;
24  for(int i = 0; i < 4; ++i) {
25  int bin = i + samples.presamples();
26  if(bin < samples.size()) {
27  totalCharge += samples[bin];
28  }
29  }
30  return totalCharge;
31 }
32 
33 
34 void HcalTimeSlewSim::delay(CaloSamples & cs, CLHEP::HepRandomEngine* engine) const
35 {
36  // HO goes slow, HF shouldn't be used at all
37  //ZDC not used for the moment
38 
39  DetId detId(cs.id());
40  if(detId.det()==DetId::Calo && detId.subdetId()==HcalZDCDetId::SubdetectorId) return;
41  HcalDetId hcalDetId(detId);
42 
43  if(hcalDetId.subdet() == HcalBarrel || hcalDetId.subdet() == HcalEndcap || hcalDetId.subdet() == HcalOuter ) {
44 
45  HcalTimeSlew::BiasSetting biasSetting = (hcalDetId.subdet() == HcalOuter) ?
48 
49  // double totalCharge = charge(cs); // old TS...
50 
51  int maxbin = cs.size();
52  CaloSamples data(detId, maxbin); // for a temporary copy
53  data = cs;
54 
55  // smearing
56  int soi = cs.presamples();
57  double eps = 1.e-6;
58  double scale_factor = 0.6;
59  double scale = cs[soi] / scale_factor;
60  double smearns = 0.;
61  double cut = minFCToDelay_; //5. fC (above mean) for signal to be delayed
62 
63  const HcalSimParameters& params =
64  static_cast<const HcalSimParameters&>(theParameterMap->simParameters(detId));
65  if (params.doTimeSmear()) {
66  double rms = params.timeSmearRMS(scale);
67  smearns = CLHEP::RandGaussQ::shoot(engine)*rms;
68  LogDebug("HcalTimeSlewSim") << "TimeSmear charge "
69  << scale << " rms " << rms
70  << " smearns " << smearns;
71  }
72 
73  // cycle over TS', it - current TS index
74  for(int it = 0; it < maxbin-1; ) {
75 
76  double datai = cs[it];
77  int nts = 0;
78  double tshift = smearns;
79  double totalCharge = datai/scale_factor;
80 
81  // until we get more precise/reliable QIE8 simulation...
82  if(totalCharge <= 0.) totalCharge = eps; // protecion against negaive v.
83  tshift += HcalTimeSlew::delay(totalCharge, biasSetting);
84  if(tshift <= 0.) tshift = eps;
85 
86  if ( cut > -999. ) { //preserve compatibility
87  if ((datai > cut) && ( it == 0 || (datai > cs[it-1]))) {
88  // number of TS affected by current move depends on the signal shape:
89  // rising or peaking
90  nts = 2; // rising
91  if(datai > cs[it+1]) nts = 3; // peaking
92 
93  // 1 or 2 TS to move from here,
94  // 2d or 3d TS gets leftovers to preserve the sum
95  for (int j = it; j < it+nts && j < maxbin; ++j) {
96 
97  // snippet borrowed from CaloSamples::offsetTime(offset)
98  // CalibFormats/CaloObjects/src/CaloSamples.cc
99  double t = j*25. - tshift;
100  int firstbin = floor(t/25.);
101  double f = t/25. - firstbin;
102  int nextbin = firstbin + 1;
103  double v1 = (firstbin < 0 || firstbin >= maxbin) ? 0. : cs[firstbin];
104  double v2 = (nextbin < 0 || nextbin >= maxbin) ? 0. : cs[nextbin];
105 
106  // Keeping the overal sum intact
107  if(nts == 2) {
108  if(j == it) data[j] = v2*f;
109  else data[j] = v1*(1.-f) + v2;
110  }
111  else { // nts = 3
112  if(j == it) data[j] = v2*f;
113  if(j == it+1) data[j] = v1*(1.-f) + v2*f;
114  if(j == it+nts-1) data[j] = v1*(1.-f) + v2;
115  }
116 
117  } // end of local move of TS', now update...
118  cs = data;
119 
120  } // end of rising edge or peak finding
121  }
122  else{
123  double t=it*25.- tshift;
124  int firstbin=floor(t/25.);
125  double f=t/25. - firstbin;
126  int nextbin = firstbin +1;
127  double v2= (nextbin<0 || nextbin >= maxbin) ? 0. : data[nextbin];
128  data[it]=v2*f;
129  data[it+1]+= (v2-data[it]);
130  cs=data;
131  }
132 
133  if(nts < 3) it++;
134  else it +=2;
135  }
136 
137  // final update of the shifted TS array
138  cs = data;
139  }
140 }
#define LogDebug(id)
int i
Definition: DBlmapReader.cc:9
auto_ptr< ClusterSequence > cs
HcalSubdetector subdet() const
get the subdetector
Definition: HcalDetId.h:45
HcalTimeSlewSim(const CaloVSimParameterMap *parameterMap, double minFCToDelay)
int presamples() const
access presample information
Definition: CaloSamples.h:36
void delay(CaloSamples &samples, CLHEP::HepRandomEngine *) const
bool doTimeSmear() const
double timeSmearRMS(double ampl) const
int j
Definition: DBlmapReader.cc:9
virtual const CaloSimParameters & simParameters(const DetId &id) const =0
double f[11][100]
const CaloVSimParameterMap * theParameterMap
Definition: DetId.h:18
static const int SubdetectorId
Definition: HcalZDCDetId.h:20
int size() const
get the size
Definition: CaloSamples.h:24
double charge(const CaloSamples &samples) const
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
DetId id() const
get the (generic) id
Definition: CaloSamples.h:21
static double delay(double fC, BiasSetting bias=Medium)
Returns the amount (ns) by which a pulse of the given number of fC will be delayed by the timeslew ef...
Definition: HcalTimeSlew.cc:12