CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
CastorSimParameters Class Reference

#include <CastorSimParameters.h>

Inheritance diagram for CastorSimParameters:
CaloSimParameters

Public Member Functions

 CastorSimParameters (double simHitToPhotoelectrons, double photoelectronsToAnalog, double samplingFactor, double timePhase, bool syncPhase)
 
 CastorSimParameters (const edm::ParameterSet &p)
 
double fCtoGeV (const DetId &detId) const
 
double getNominalfCperPE () const
 
double photoelectronsToAnalog (const DetId &detId) const override
 
void setDbService (const CastorDbService *service)
 
 ~CastorSimParameters () override
 
- Public Member Functions inherited from CaloSimParameters
int binOfMaximum () const
 
 CaloSimParameters (double simHitToPhotoelectrons, double photoelectronsToAnalog, double samplingFactor, double timePhase, int readoutFrameSize, int binOfMaximum, bool doPhotostatistics, bool syncPhase=true)
 
 CaloSimParameters (const edm::ParameterSet &p, bool skipPe2Fc=false)
 
bool doPhotostatistics () const
 whether or not to apply Poisson statistics to photoelectrons More...
 
double photoelectronsToAnalog () const
 the factor which goes from photoelectrons to whatever gets read by ADCs More...
 
int readoutFrameSize () const
 for now, the LinearFrames and trhe digis will be one-to-one. More...
 
void setBinOfMaximum (int binOfMax)
 
void setReadoutFrameSize (int frameSize)
 some datamixing apps need this to be set dynamically More...
 
double simHitToPhotoelectrons () const
 
virtual double simHitToPhotoelectrons (const DetId &) const
 
bool syncPhase () const
 
double timePhase () const
 the adjustment you need to apply to get the signal where you want it More...
 
virtual ~CaloSimParameters ()
 

Private Attributes

double nominalfCperPE
 
const CastorDbServicetheDbService
 
double theSamplingFactor
 

Detailed Description

Definition at line 8 of file CastorSimParameters.h.

Constructor & Destructor Documentation

CastorSimParameters::CastorSimParameters ( double  simHitToPhotoelectrons,
double  photoelectronsToAnalog,
double  samplingFactor,
double  timePhase,
bool  syncPhase 
)

Definition at line 10 of file CastorSimParameters.cc.

17  theDbService(nullptr),
19  nominalfCperPE(1) {}
CaloSimParameters(double simHitToPhotoelectrons, double photoelectronsToAnalog, double samplingFactor, double timePhase, int readoutFrameSize, int binOfMaximum, bool doPhotostatistics, bool syncPhase=true)
const CastorDbService * theDbService
double timePhase() const
the adjustment you need to apply to get the signal where you want it
double simHitToPhotoelectrons() const
double photoelectronsToAnalog() const
the factor which goes from photoelectrons to whatever gets read by ADCs
bool syncPhase() const
CastorSimParameters::CastorSimParameters ( const edm::ParameterSet p)

Definition at line 21 of file CastorSimParameters.cc.

22  : CaloSimParameters(p),
23  theDbService(nullptr),
24  theSamplingFactor(p.getParameter<double>("samplingFactor")),
25  nominalfCperPE(p.getParameter<double>("photoelectronsToAnalog")) {}
T getParameter(std::string const &) const
CaloSimParameters(double simHitToPhotoelectrons, double photoelectronsToAnalog, double samplingFactor, double timePhase, int readoutFrameSize, int binOfMaximum, bool doPhotostatistics, bool syncPhase=true)
const CastorDbService * theDbService
CastorSimParameters::~CastorSimParameters ( )
inlineoverride

Definition at line 17 of file CastorSimParameters.h.

17 {}

Member Function Documentation

double CastorSimParameters::fCtoGeV ( const DetId detId) const

Definition at line 38 of file CastorSimParameters.cc.

References CastorDbService::getGain(), CastorDbService::getGainWidth(), CastorGain::getValue(), mps_fire::result, and theDbService.

Referenced by photoelectronsToAnalog(), and setDbService().

38  {
39  assert(theDbService != nullptr);
40  HcalGenericDetId hcalGenDetId(detId);
41  const CastorGain *gains = theDbService->getGain(hcalGenDetId);
42  const CastorGainWidth *gwidths = theDbService->getGainWidth(hcalGenDetId);
43  double result = 0.0;
44  if (!gains || !gwidths) {
45  edm::LogError("CastorAmplifier") << "Could not fetch HCAL conditions for channel " << hcalGenDetId;
46  } else {
47  // only one gain will be recorded per channel, so just use capID 0 for now
48  result = gains->getValue(0);
49  }
50  return result;
51 }
const CastorDbService * theDbService
const CastorGain * getGain(const HcalGenericDetId &fId) const
const CastorGainWidth * getGainWidth(const HcalGenericDetId &fId) const
float getValue(int fCapId) const
get value for capId = 0..3
Definition: CastorGain.h:19
double CastorSimParameters::getNominalfCperPE ( ) const

Definition at line 27 of file CastorSimParameters.cc.

References nominalfCperPE.

Referenced by CastorAmplifier::amplify(), and setDbService().

27  {
28  // return the nominal PMT gain value of CASTOR from the config file.
29  return nominalfCperPE;
30 }
double CastorSimParameters::photoelectronsToAnalog ( const DetId detId) const
overridevirtual

Reimplemented from CaloSimParameters.

Definition at line 32 of file CastorSimParameters.cc.

References fCtoGeV(), and theSamplingFactor.

Referenced by CastorAmplifier::amplify().

32  {
33  // calculate factor (PMT gain) using sampling factor value & available
34  // electron gain
35  return theSamplingFactor / fCtoGeV(detId);
36 }
double fCtoGeV(const DetId &detId) const
void CastorSimParameters::setDbService ( const CastorDbService service)
inline

Member Data Documentation

double CastorSimParameters::nominalfCperPE
private

Definition at line 30 of file CastorSimParameters.h.

Referenced by getNominalfCperPE().

const CastorDbService* CastorSimParameters::theDbService
private

Definition at line 28 of file CastorSimParameters.h.

Referenced by fCtoGeV(), and setDbService().

double CastorSimParameters::theSamplingFactor
private

Definition at line 29 of file CastorSimParameters.h.

Referenced by photoelectronsToAnalog().