26 theParameterMap(parameters),
27 theNoiseSignalGenerator(0),
106 double noise [32] = {0.};
114 for (
int tbin = 0; tbin < frame.
size(); ++tbin) {
116 double pedestal = calibs.
pedestal(capId) + noise[tbin];
117 frame[tbin] += pedestal;
123 double fudgefactor = 1;
134 if(hcalGenDetId.isHcalCastorDetId())
return;
135 if(hcalGenDetId.isHcalZDCDetId())
return;
138 if ( !thisChanCholesky) {
139 std::cout <<
"no Cholesky " << hcalSubDet <<
" " << hcalGenDetId.rawId() <<
" " << frame.
id().
subdetId() <<std::endl;
143 int theStartingCapId_2 = (int)floor(
theRandFlat->fire(0.,4.));
145 double noise [32] = {0.};
150 makeNoise(*thisChanCholesky, frame.
size(), gauss, noise, (int)theStartingCapId_2);
156 for (
int tbin = 0; tbin < frame.
size(); ++tbin) {
157 int capId = (theStartingCapId_2 + tbin)%4;
158 double x = noise[tbin] * fudgefactor + thisChanADCPeds->
getValue(capId);
159 int x1=(int)std::floor(x);
160 int x2=(int)std::floor(x+1);
161 float y2=coder->
charge(*shape,x2,capId);
162 float y1=coder->
charge(*shape,x1,capId);
163 frame[tbin] = (y2-y1)*(x-x1)+y1;
168 if(fFrames > 10)
return;
170 for(
int i = 0;
i != 10;
i++){
171 for(
int j = 0;
j != 10;
j++){
172 fNoise[
i] += thisChanCholesky.
getValue(m,
i,
j) * fGauss[
j];
193 double s_xy_mean = -0.5 * s_xx_mean;
198 double term = s_xx_mean*s_xx_mean - 2.*s_xy_mean*s_xy_mean;
200 if (term < 0.) term = 1.e-50 ;
201 double sigma =
sqrt (0.5 * (s_xx_mean +
sqrt(term)));
202 double corr = sigma == 0. ? 0. : 0.5*s_xy_mean / sigma;
204 for (
int i = 0;
i < fFrames;
i++) {
205 fNoise [
i] = fGauss[
i]*sigma;
206 if (
i > 0) fNoise [
i] += fGauss[
i-1]*
corr;
207 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
void setUseOldHO(bool useOld)
const HcalTimeSlewSim * theTimeSlewSim
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
HcalAmplifier(const CaloVSimParameterMap *parameters, bool addNoise)
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
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.