Skip to content
Snippets Groups Projects
Commit 05d512fc authored by Guillaume Unal's avatar Guillaume Unal
Browse files

LArCalorimeter/LArDigitization/python/LArDigitizationFlags.py : add new flag...

LArCalorimeter/LArDigitization/python/LArDigitizationFlags.py : add new flag to enable useage of High Gain in EMEC inner wheel digitization
    default value = True, i.e same behavior as before this change
    this flag should be set to False to emulate the detector configuration for 2017 data taking

LArCalorimeter/LArDigitization/python/LArDigitizationConfig.py : set property for LArPileUpTool according to flag above => MG/HG switching value
 set to 0 if High gain is not enable in the digitization => cells can only be in Medium or Low gain

LArCalorimeter/LArDigitization/LArDigitization/LArPileUpTool.h
LArCalorimeter/LArDigitization/src/LArPileUpTool.cxx  : add specific gain switching values for EMEC IW region.  Default value are as in rest of EM calorimeter
parent 8e3c71b2
No related merge requests found
......@@ -160,9 +160,9 @@ class LArPileUpTool : virtual public ILArPileUpTool, public PileUpToolBase
float m_WindowsPhiSize;
float m_WindowsPtCut;
//
enum CaloNum{EM,HEC,FCAL};
double m_LowGainThresh[3]; // energy thresholds for the low gain
double m_HighGainThresh[3]; // energy thresholds for the high gain
enum CaloNum{EM,HEC,FCAL,EMIW};
double m_LowGainThresh[4]; // energy thresholds for the low gain
double m_HighGainThresh[4]; // energy thresholds for the high gain
double m_EnergyThresh; // Zero suppression energy threshold
//double m_AdcPerGeV; // adc = UnCalibretedEnergy*Gain/m_AdcPerGeV + Pedestal
int m_NSamples; // number of samples in Digit
......@@ -172,6 +172,7 @@ class LArPileUpTool : virtual public ILArPileUpTool, public PileUpToolBase
bool m_rndmEvtRun; // use run,event number for random number seeding
bool m_useTriggerTime;
bool m_RndmEvtOverlay; // Pileup and noise added by overlaying random events
bool m_isMcOverlay; // true if input RDO for overlay are from MC, false if from data
bool m_useBad;
std::string m_RandomDigitContainer; // random digit container name list
......
......@@ -96,9 +96,19 @@ def getLArPileUpTool(name='LArPileUpTool', **kwargs): ## useLArFloat()=True,isOv
else:
mlog.info("use high gain in Fcal digitization or overlay job")
# check if using high gain for EMEC IW or not
if (not jobproperties.LArDigitizationFlags.useEmecIwHighGain()) and (not isOverlay()):
mlog.info("do not use high gain in EMEC IW digitization ")
kwargs.setdefault('HighGainThreshEMECIW',0)
kwargs.setdefault('RndmEvtOverlay', isOverlay() )
kwargs.setdefault('DigitContainer', 'LArDigitContainer_MC' ) ##FIXME - should not be hard-coded
# if doing MC+MC overlay
from AthenaCommon.GlobalFlags import globalflags
if isOverlay() and globalflags.DataSource() == 'geant4':
kwargs.setdefault('isMcOverlay',True)
from LArROD.LArRODFlags import larRODFlags
kwargs.setdefault('Nsamples', larRODFlags.nSamples() )
kwargs.setdefault('firstSample', larRODFlags.firstSample() )
......
......@@ -23,6 +23,15 @@ class useFcalHighGain(JobProperty):
statusOn = False
allowedTypes = ['bool']
StoredValue = False
#
class useEmecIwHighGain(JobProperty):
""" Flag to decide if using high gain for EMEC IW or not
"""
statusOn = True
allowedTypes = ['bool']
StoredValue = True
# Defines the container for the cell making flags
class LArDigitizationFlags(JobPropertyContainer):
......@@ -38,7 +47,7 @@ jobproperties.add_Container(LArDigitizationFlags)
# We want always the following flags in the container
list_jobproperties = [
useFcalHighGain
useFcalHighGain,useEmecIwHighGain
]
for i in list_jobproperties:
......
......@@ -92,6 +92,8 @@ LArPileUpTool::LArPileUpTool(const std::string& type, const std::string& name, c
m_HighGainThresh[HEC] = 0;//-> high-gain never used for HEC
m_LowGainThresh[FCAL] = 2000.;//ADC counts in Medium Gain
m_HighGainThresh[FCAL] = 1100.;//ADCcounts in MediumGain
m_LowGainThresh[EMIW] = 3900;//ADC counts in MediumGain
m_HighGainThresh[EMIW] = 1300;//ADC counts in MediumGain
m_EnergyThresh = -99.;
m_PileUp = false;
m_Windows = false;
......@@ -106,6 +108,7 @@ LArPileUpTool::LArPileUpTool(const std::string& type, const std::string& name, c
m_rndmSvc = "AtRndmGenSvc";
m_rndmEvtRun = false;
m_RndmEvtOverlay = false;
m_isMcOverlay = false;
m_useBad = true;
m_RandomDigitContainer = "LArDigitContainer_Random";
m_pedestalKey = "LArPedestal";
......@@ -147,6 +150,8 @@ LArPileUpTool::LArPileUpTool(const std::string& type, const std::string& name, c
declareProperty("HighGainThreshHEC",m_HighGainThresh[HEC],"Medium/High gain transition in HEC");
declareProperty("LowGainThreshFCAL",m_LowGainThresh[FCAL],"Medium/Low gain transition in FCAL");
declareProperty("HighGainThreshFCAL",m_HighGainThresh[FCAL],"Medium/High gain transition in FCAL");
declareProperty("LowGainThreshEMECIW",m_LowGainThresh[EMIW],"Medium/Low gain transition in EMEC IW");
declareProperty("HighGainThreshEMECIW",m_HighGainThresh[EMIW],"Medium/High gain transition in EMEC IW");
declareProperty("EnergyThresh",m_EnergyThresh,"Hit energy threshold (default=-99)");
declareProperty("PileUp",m_PileUp,"Pileup mode (default=false)");
declareProperty("Windows",m_Windows,"Window mode (produce digits only around true e/photon) (default=false)");
......@@ -166,6 +171,7 @@ LArPileUpTool::LArPileUpTool(const std::string& type, const std::string& name, c
declareProperty("MaskingTool",m_maskingTool,"Tool handle for dead channel masking");
declareProperty("BadChannelTool",m_badChannelTool,"Tool handle for bad channel access");
declareProperty("RndmEvtOverlay",m_RndmEvtOverlay,"Pileup and/or noise added by overlaying random events (default=false)");
declareProperty("isMcOverlay",m_isMcOverlay,"Is input Overlay from MC or data (default=false, from data)");
declareProperty("RandomDigitContainer",m_RandomDigitContainer,"Name of random digit container");
declareProperty("PedestalKey",m_pedestalKey,"SG Key of the LArPedestal object");
declareProperty("UseMBTime",m_useMBTime,"use detailed hit time from MB events in addition to bunch crossing time for pileup (default=false)");
......@@ -199,6 +205,8 @@ StatusCode LArPileUpTool::initialize()
m_NoiseOnOff = false ;
m_PileUp = true ;
ATH_MSG_INFO(" pileup and/or noise added by overlaying digits of random events");
if (m_isMcOverlay) ATH_MSG_INFO(" random events are from MC ");
else ATH_MSG_INFO(" random events are from data ");
}
else
{
......@@ -560,10 +568,10 @@ StatusCode LArPileUpTool::prepareEvent(unsigned int /*nInputEvents */)
return StatusCode::FAILURE;
}
//
// ..... get OFC pointer for overlay case
// ..... get OFC pointer for overlay case (only for data)
m_larOFC=NULL;
if(m_RndmEvtOverlay) {
if(m_RndmEvtOverlay && !m_isMcOverlay) {
sc=detStore()->retrieve(m_larOFC);
if (sc.isFailure())
{
......@@ -1810,7 +1818,10 @@ StatusCode LArPileUpTool::MakeDigit(const Identifier & cellId,
int iCalo=0;
if(m_larem_id->is_lar_em(cellId)) iCalo=EM;
if(m_larem_id->is_lar_em(cellId)) {
if (m_larem_id->is_em_endcap_inner(cellId)) iCalo=EMIW;
else iCalo=EM;
}
if(m_larem_id->is_lar_hec(cellId)) iCalo=HEC;
if(m_larem_id->is_lar_fcal(cellId)) iCalo=FCAL;
......@@ -1875,8 +1886,9 @@ StatusCode LArPileUpTool::MakeDigit(const Identifier & cellId,
// in case Medium or low gain, take into account ramp intercept in ADC->"energy" computation
// this requires to take into account the sum of the optimal filter coefficients, as they don't compute with ADC shift
// for MC there is no ramp intercept => not needed
float adc0=0.;
if (m_larOFC && rndmEvtDigit->gain()>0) {
if (!m_isMcOverlay && m_larOFC && rndmEvtDigit->gain()>0) {
ILArOFC::OFCRef_t ofc_a = m_larOFC->OFC_a(ch_id,rndmEvtDigit->gain(),0);
float sumOfc=0.;
if (ofc_a.size()>0) {
......@@ -1969,7 +1981,7 @@ StatusCode LArPileUpTool::MakeDigit(const Identifier & cellId,
//
int BvsEC=0;
if(iCalo==EM) BvsEC=abs(m_larem_id->barrel_ec(cellId));
if(iCalo==EM || iCalo==EMIW) BvsEC=abs(m_larem_id->barrel_ec(cellId));
if( m_NoiseOnOff
&& ( (BvsEC==1 && m_NoiseInEMB)
......@@ -2022,7 +2034,7 @@ StatusCode LArPileUpTool::MakeDigit(const Identifier & cellId,
// in case Medium or low gain, take into account ramp intercept in energy->ADC computation
// this requires to take into account the sum of the optimal filter coefficients, as they don't compute with ADC shift
if(m_RndmEvtOverlay && igain>0 && m_larOFC)
if(!m_isMcOverlay && m_RndmEvtOverlay && igain>0 && m_larOFC)
{
float sumOfc=0.;
ILArOFC::OFCRef_t ofc_a = m_larOFC->OFC_a(ch_id,igain,0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment