26 theParameterMap(parameters),
27 theNoiseSignalGenerator(0),
109 double noise [32] = {0.};
118 for (
int tbin = 0; tbin < frame.
size(); ++tbin) {
120 double pedestal = calibs.
pedestal(capId) + noise[tbin];
122 frame[tbin] += pedestal;
129 double fudgefactor = 1;
140 if(hcalGenDetId.isHcalCastorDetId())
return;
141 if(hcalGenDetId.isHcalZDCDetId())
return;
144 if ( !thisChanCholesky) {
145 std::cout <<
"no Cholesky " << hcalSubDet <<
" " << hcalGenDetId.rawId() <<
" " << frame.
id().
subdetId() <<std::endl;
149 int theStartingCapId_2 = (int)floor(
theRandFlat->fire(0.,4.));
151 double noise [32] = {0.};
156 makeNoise(*thisChanCholesky, frame.
size(), gauss, noise, (int)theStartingCapId_2);
162 for (
int tbin = 0; tbin < frame.
size(); ++tbin) {
163 int capId = (theStartingCapId_2 + tbin)%4;
164 double x = noise[tbin] * fudgefactor + thisChanADCPeds->
getValue(capId);
165 int x1=(int)std::floor(x);
166 int x2=(int)std::floor(x+1);
167 float y2=coder->
charge(*shape,x2,capId);
168 float y1=coder->
charge(*shape,x1,capId);
169 frame[tbin] = (y2-y1)*(x-x1)+y1;
174 if(fFrames > 10)
return;
176 for(
int i = 0;
i != 10;
i++){
177 for(
int j = 0;
j != 10;
j++){
178 fNoise[
i] += thisChanCholesky.
getValue(m,
i,
j) * fGauss[
j];
199 double s_xy_mean = -0.5 * s_xx_mean;
204 double term = s_xx_mean*s_xx_mean - 2.*s_xy_mean*s_xy_mean;
206 if (term < 0.) term = 1.e-50 ;
207 double sigma =
sqrt (0.5 * (s_xx_mean +
sqrt(term)));
208 double corr = sigma == 0. ? 0. : 0.5*s_xy_mean / sigma;
210 for (
int i = 0;
i < fFrames;
i++) {
211 fNoise [
i] = fGauss[
i]*sigma;
212 if (
i > 0) fNoise [
i] += fGauss[
i-1]*
corr;
213 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
void addThermalNoise(CaloSamples &samples)
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.
CLHEP::RandGaussQ * theRandGaussQ
HcalAmplifier(const CaloVSimParameterMap *parameters, bool addNoise, bool PreMix1, bool PreMix2)
void setUseOldHO(bool useOld)
void setHEtuningParameter(double tp)
void setUseOldHE(bool useOld)
double pedestal(int fCapId) const
get pedestal width for capid=0..3
void setRandomEngine(CLHEP::HepRandomEngine &engine)
need a shaper in order to set thermal noise
const HcalDbService * theDbService
void setRandomEngine(CLHEP::HepRandomEngine &engine)
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
HcalTimeSlewSim * theTimeSlewSim
int size() const
get the size
virtual void amplify(CaloSamples &linearFrame) const
void makeNoise(const HcalCholeskyMatrix &thisChanCholesky, int fFrames, double *fGauss, double *fNoise, int m) const
const HcalQIECoder * getHcalCoder(const HcalGenericDetId &fId) const
void delay(CaloSamples &samples) const
const HcalQIEShape * getHcalShape(const HcalGenericDetId &fId) const
unsigned theStartingCapId
void addPedestals(CaloSamples &frame) const
void pe2fC(CaloSamples &frame) const
CLHEP::RandFlat * theRandFlat
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.