18 #include "CLHEP/Random/RandGaussQ.h"
19 #include "CLHEP/Random/RandFlat.h"
27 theParameterMap(parameters),
28 theNoiseSignalGenerator(0),
102 double noise [32] = {0.};
106 for (
int i = 0;
i < frame.
size();
i++) gauss[
i] = CLHEP::RandGaussQ::shoot(engine, 0., 1.);
111 for (
int tbin = 0; tbin < frame.
size(); ++tbin) {
122 double fudgefactor = 1;
133 if(hcalGenDetId.isHcalCastorDetId())
return;
134 if(hcalGenDetId.isHcalZDCDetId())
return;
137 if ( !thisChanCholesky) {
138 std::cout <<
"no Cholesky " << hcalSubDet <<
" " << hcalGenDetId.rawId() <<
" " << frame.
id().
subdetId() <<std::endl;
142 int theStartingCapId_2 = (int)floor(CLHEP::RandFlat::shoot(engine, 0., 4.));
144 double noise [32] = {0.};
148 for (
int i = 0;
i < frame.
size();
i++) gauss[
i] = CLHEP::RandGaussQ::shoot(engine, 0., 1.);
149 makeNoise(*thisChanCholesky, frame.
size(), gauss, noise, (int)theStartingCapId_2);
155 for (
int tbin = 0; tbin < frame.
size(); ++tbin) {
156 int capId = (theStartingCapId_2 + tbin)%4;
157 double x = noise[tbin] * fudgefactor + thisChanADCPeds->
getValue(capId);
158 int x1=(int)std::floor(x);
159 int x2=(int)std::floor(x+1);
160 float y2=coder->
charge(*shape,x2,capId);
161 float y1=coder->
charge(*shape,x1,capId);
162 frame[tbin] = (y2-y1)*(x-x1)+y1;
167 if(fFrames > 10)
return;
169 for(
int i = 0;
i != 10;
i++){
170 for(
int j = 0;
j != 10;
j++){
171 fNoise[
i] += thisChanCholesky.
getValue(m,
i,
j) * fGauss[
j];
192 double s_xy_mean = -0.5 * s_xx_mean;
197 double term = s_xx_mean*s_xx_mean - 2.*s_xy_mean*s_xy_mean;
199 if (term < 0.) term = 1.e-50 ;
200 double sigma =
sqrt (0.5 * (s_xx_mean +
sqrt(term)));
201 double corr = sigma == 0. ? 0. : 0.5*s_xy_mean / sigma;
203 for (
int i = 0;
i < fFrames;
i++) {
204 fNoise [
i] = fGauss[
i]*sigma;
205 if (
i > 0) fNoise [
i] += fGauss[
i-1]*
corr;
206 if (
i < fFrames-1) fNoise [
i] += fGauss[
i+1]*
corr;
void setUseOldHB(bool useOld)
float getValue(int capid, int i, int j) const
void setHOtuningParameter(double tp)
void makeNoiseOld(HcalGenericDetId::HcalGenericSubdetector hcalSubDet, const HcalCalibrationWidths &width, int fFrames, double *fGauss, double *fNoise) const
void setDbService(const HcalDbService *service)
the Producer will probably update this every event
const CaloVNoiseSignalGenerator * theNoiseSignalGenerator
const CaloVSimParameterMap * theParameterMap
void setUseOldHF(bool useOld)
double pedestal(int fCapId) const
get pedestal for capid=0..3
const Item * getValues(DetId fId, bool throwOnFail=true) const
void setHFtuningParameter(double tp)
Main class for Parameters in different subdetectors.
HcalAmplifier(const CaloVSimParameterMap *parameters, bool addNoise, bool PreMix1, bool PreMix2)
void addThermalNoise(CaloSamples &samples, CLHEP::HepRandomEngine *)
void setUseOldHO(bool useOld)
void delay(CaloSamples &samples, CLHEP::HepRandomEngine *) const
void setHEtuningParameter(double tp)
void setUseOldHE(bool useOld)
double pedestal(int fCapId) const
get pedestal width for capid=0..3
const HcalDbService * theDbService
bool contains(const DetId &detId) const
virtual const CaloSimParameters & simParameters(const DetId &id) const =0
float getValue(int fCapId) const
get value for capId = 0..3
int subdetId() const
get the contents of the subdetector field (not cast into any detector's numbering enum) ...
const HcalCalibrationWidths & getHcalCalibrationWidths(const HcalGenericDetId &fId) const
virtual void amplify(CaloSamples &linearFrame, CLHEP::HepRandomEngine *) const
HcalTimeSlewSim * theTimeSlewSim
int size() const
get the size
void makeNoise(const HcalCholeskyMatrix &thisChanCholesky, int fFrames, double *fGauss, double *fNoise, int m) const
const HcalQIECoder * getHcalCoder(const HcalGenericDetId &fId) const
const HcalQIEShape * getHcalShape(const HcalGenericDetId &fId) const
unsigned theStartingCapId
void addPedestals(CaloSamples &frame, CLHEP::HepRandomEngine *) const
void pe2fC(CaloSamples &frame) const
volatile std::atomic< bool > shutdown_flag false
DetId id() const
get the (generic) id
HPDIonFeedbackSim * theIonFeedbackSim
HcalGenericSubdetector genericSubdet() const
void setHBtuningParameter(double tp)
const HcalCholeskyMatrix * getValues(DetId fId, bool throwOnFail=true) const
const HcalCalibrations & getHcalCalibrations(const HcalGenericDetId &fId) const
void setDbService(const HcalDbService *service)
const HcalPedestals * myADCPeds
double photoelectronsToAnalog() const
the factor which goes from photoelectrons to whatever gets read by ADCs
const HcalCholeskyMatrices * myCholeskys
float charge(const HcalQIEShape &fShape, unsigned fAdc, unsigned fCapId) const
ADC [0..127] + capid [0..3] -> fC conversion.