ATLAS Offline Software
CaloClusterLocalCalib.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 #include "GaudiKernel/MsgStream.h"
7 #include "GaudiKernel/ListItem.h"
8 
9 //Needed for abs option
13 
15 
17 using xAOD::CaloCluster;
19  const std::string& name,
20  const IInterface* parent)
22  m_classificationTool(this),
23  m_calibTools(this),
24  m_absOpt(false)
25 {
26  m_recoStatus.resize(0);
27  declareProperty ("ClusterClassificationTool",m_classificationTool);
28  declareProperty ("LocalCalibTools",m_calibTools) ;
29  declareProperty ("ClusterRecoStatus",m_recoStatus) ;
30  //Use weighting of negative clusters?
31  declareProperty ("WeightingOfNegClusters",m_absOpt) ;
32 }
33 
34 
36 
37  if (m_classificationTool.size()>1) {
38  msg(MSG::ERROR) << "More than one classification tool specified!" << endmsg;
39  return StatusCode::FAILURE;
40  }
41  //Retrieve classification tool (if necessary)
42  if (!m_classificationTool.empty()) {
43  ATH_CHECK(m_classificationTool.retrieve());
44  msg(MSG::INFO) << "Found classification tool " << m_classificationTool[0] << endmsg;
45  }
46 
47  //Retrieve calibration tools
48  ATH_CHECK(m_calibTools.retrieve());
49  msg(MSG::INFO) <<"Loaded "<< m_calibTools.size() <<" hadronic calibration tools"<<endmsg;
50 
51  // check that at least one reco status is defined
52  if ( m_recoStatus.empty() ) {
53  msg(MSG::ERROR) << "Please specify at least one valid reco status with ClusterRecoStatus = [...] for this calib tool " << endmsg;
54  return StatusCode::FAILURE;
55  }
56  return StatusCode::SUCCESS;
57 }
58 
60  CaloCluster* theCluster) const
61 {
62  CaloRecoStatus& recoStatus=theCluster->recoStatus();
63  // call classification tool
64  if (!m_classificationTool.empty()) {
65  recoStatus=m_classificationTool[0]->classify(theCluster);
66  }
67  // check desired reco status
68  bool isSelected (false);
69  for (unsigned int i=0;!isSelected && i<m_recoStatus.size();i++ )
70  isSelected = recoStatus.checkStatus(CaloRecoStatus::StatusIndicator(m_recoStatus[i]));
71  if ( isSelected ) {
72  if( m_absOpt ){
73 
74 
75  //double dm_weight(0.);
76  //double had_weight(0.);
77  double centLambd(0.);
78  double engdens(0.);
79  double emprobability(0.);
80  double isolation(0.);
81  // Store moments and energy of the old cluster
82  //theCluster->retrieveMoment(xAOD::CaloCluster::DM_WEIGHT, dm_weight);
83  //theCluster->retrieveMoment(xAOD::CaloCluster::HAD_WEIGHT,had_weight);
84  if (!theCluster->retrieveMoment(xAOD::CaloCluster::CENTER_LAMBDA,centLambd))
85  centLambd = 0;
86  if (!theCluster->retrieveMoment(xAOD::CaloCluster::FIRST_ENG_DENS,engdens))
87  engdens = 0;
88  if (!theCluster->retrieveMoment(xAOD::CaloCluster::EM_PROBABILITY,emprobability))
89  emprobability = 0;
90  if (!theCluster->retrieveMoment(xAOD::CaloCluster::ISOLATION,isolation))
91  isolation = 0;
92 
93  double oldEnergy = theCluster->e();
94 
95  const CaloCell_ID* calo_id = nullptr;
96  ATH_CHECK(detStore()->retrieve(calo_id,"CaloCell_ID"));
97 
98 // Make new Cluster and CellColl
99  //std::unique_ptr<CaloCellContainer> myCellColl=std::make_unique<CaloCellContainer>(SG::OWN_ELEMENTS);
101  std::unique_ptr<xAOD::CaloCluster> myCluster = CaloClusterStoreHelper::makeCluster(&myCellColl);
102  int cellIndex = 0;
103 // Iterate over cells of old cluster and replicate them with energy weighted by -1 if negative and add it to the new cluster
104  xAOD::CaloCluster::cell_iterator cellIter = theCluster->cell_begin();
105  for(;cellIter!=theCluster->cell_end();cellIter++) {
106  const CaloCell* pCell = *cellIter;
107  double CellEnergy = pCell->e();
108  //Identifier myId = pCell->ID();
109  //IdentifierHash myHashId = calo_id->calo_cell_hash(myId);
110  if( CellEnergy < 0. ) CellEnergy = -1 * pCell->e();
111  myCellColl.push_back(new CaloCell(pCell->caloDDE(), pCell->ID(), CellEnergy, pCell->time(), pCell->quality(), pCell->provenance(), pCell->gain() ));
112  double cellWeight = cellIter.weight();
113  myCluster->addCell(cellIndex,cellWeight);
114  cellIndex++;
115  }
116 
117  CaloClusterKineHelper::calculateKine(myCluster.get(),false,false);
118  myCluster->setRawE(myCluster->e());
119 
120 // Set sample energy of the new cluster to the one of the old cluster, other wise it is zero, important for dm correction
121  for(unsigned int i=0; i != CaloSampling::Unknown; ++ i) {
123  if (myCluster->hasSampling(s)) myCluster->setEnergy((CaloSampling::CaloSample)i, theCluster->eSample((CaloSampling::CaloSample)i));
124  }//end loop over samplings
125 
126  CaloClusterKineHelper::calculateKine(myCluster.get(),true,false);
127 // Give the new cluster the same moments as the old one
128  myCluster->insertMoment(xAOD::CaloCluster::CENTER_LAMBDA,centLambd);
130  myCluster->insertMoment(xAOD::CaloCluster::EM_PROBABILITY,emprobability);
131  myCluster->insertMoment(xAOD::CaloCluster::ISOLATION,isolation);
132 
133 // Weight the new cluster
134  for (const ToolHandle<IClusterCellWeightTool>& tool : m_calibTools) {
135  if (tool->weight(myCluster.get(),ctx).isFailure())
136  msg(MSG::ERROR) << " failed to weight cluster " << endmsg;
137  }
138 
139 // Iterate over new, calibrated cluster and write out the weights of every cell into a map
140  std::map<IdentifierHash,double> weightMap;
141  xAOD::CaloCluster::cell_iterator mycellIter = myCluster->cell_begin();
142  xAOD::CaloCluster::cell_iterator mycellIterEnd = myCluster->cell_end();
143  for(;mycellIter!=mycellIterEnd;mycellIter++) {
144  const CaloCell* pCell = *mycellIter;
145  double cellWeight = mycellIter.weight();
146  Identifier myId = pCell->ID();
147  IdentifierHash myHashId = calo_id->calo_cell_hash(myId);
148  weightMap[myHashId] = cellWeight;
149  }
150 
151 
152 // Apply cellweight on the corresponding cell of the original cluster
153 
154  cellIter = theCluster->cell_begin();
155  for(;cellIter!=theCluster->cell_end();cellIter++) {
156  const CaloCell* pCell = *cellIter;
157  IdentifierHash myHashId = calo_id->calo_cell_hash(pCell->ID());
158  double weight = weightMap[myHashId];
159  theCluster->reweightCell(cellIter,weight);
160  }
161 
162 // Update kinematics of new cluster
163  CaloClusterKineHelper::calculateKine(theCluster,true,false);
164 
165 
166  //Manually insert weight moments to the original cluster, in the OOC case this is a multiplicative weight from LCOut and LCOutPi0
167  double newWeightMoment = theCluster->e()/oldEnergy;
168  if(m_calibTools[0].typeAndName() == "CaloLCWeightTool/LCWeight") theCluster->insertMoment(xAOD::CaloCluster::HAD_WEIGHT,newWeightMoment);
169  if(m_calibTools[0].typeAndName() == "CaloLCDeadMaterialTool/LCDeadMaterial") theCluster->insertMoment(xAOD::CaloCluster::DM_WEIGHT, newWeightMoment);
170  if(m_calibTools[0].typeAndName() == "CaloLCOutOfClusterTool/LCOut") theCluster->insertMoment(xAOD::CaloCluster::OOC_WEIGHT,newWeightMoment);
171  if(m_calibTools[0].typeAndName() == "CaloLCOutOfClusterTool/LCOutPi0")
172  {
173  double ooc_weight;
174  theCluster->retrieveMoment(xAOD::CaloCluster::OOC_WEIGHT,ooc_weight);
175  newWeightMoment *= ooc_weight;
176  theCluster->insertMoment(xAOD::CaloCluster::OOC_WEIGHT,newWeightMoment);
177  }
178  }
179 // else, what as was always done
180  else{
181 
182  for (const ToolHandle<IClusterCellWeightTool>& tool : m_calibTools) {
183  if (tool->weight(theCluster,ctx).isFailure())
184  msg(MSG::ERROR) << " failed to weight cluster " << endmsg;
185  }
186 
187  }
188  //report <<MSG::DEBUG<<"new cluster energy="<<theCluster->e()<<endmsg;
189  }//end of "has correct reco status" if statement
190 
191  // PL add calibration method bits to reco status
193 
194  return StatusCode::SUCCESS;
195 }
196 
197 
198 
CaloClusterStoreHelper::makeCluster
static std::unique_ptr< xAOD::CaloCluster > makeCluster(const CaloCellContainer *cellCont)
Creates a valid CaloCluster with a private Aux-Store and CellLink container.
Definition: CaloClusterStoreHelper.cxx:13
python.PyKernel.retrieve
def retrieve(aClass, aKey=None)
Definition: PyKernel.py:110
CaloClusterKineHelper.h
GetLCDefs::Unknown
@ Unknown
Definition: GetLCDefs.h:21
CaloClusterLocalCalib::m_classificationTool
ToolHandleArray< IClusterClassificationTool > m_classificationTool
property: Classification tools
Definition: CaloClusterLocalCalib.h:56
CaloClusterLocalCalib::initialize
virtual StatusCode initialize() override
Tool initialization: load calibration tools specified by jobOptions.
Definition: CaloClusterLocalCalib.cxx:35
CaloClusterLocalCalib::m_absOpt
bool m_absOpt
if set to true, negative clusters are weighted as well
Definition: CaloClusterLocalCalib.h:72
xAOD::CaloCluster_v1::OOC_WEIGHT
@ OOC_WEIGHT
Out-of-cluster weight (E_ooc/E_w)
Definition: CaloCluster_v1.h:175
CaloCluster::eSample
double eSample(sampling_type sampling) const
Retrieve energy in a given sampling.
Definition: Calorimeter/CaloEvent/CaloEvent/CaloCluster.h:975
xAOD::CaloCluster_v1::cell_begin
const_cell_iterator cell_begin() const
Iterator of the underlying CaloClusterCellLink (const version)
Definition: CaloCluster_v1.h:812
CaloCompositeCellBase::reweightCell
void reweightCell(const CaloCell *pCell, double weight)
Reweight a cell with kinematic update.
python.SystemOfUnits.s
int s
Definition: SystemOfUnits.py:131
CaloRecoStatus::CALIBRATEDLHC
@ CALIBRATEDLHC
Definition: CaloRecoStatus.h:43
CaloCell_Base_ID::calo_cell_hash
IdentifierHash calo_cell_hash(const Identifier cellId) const
create hash id from 'global' cell id
CaloClusterLocalCalib::execute
virtual StatusCode execute(const EventContext &ctx, xAOD::CaloCluster *theCluster) const override
Execute on a single cluster.
Definition: CaloClusterLocalCalib.cxx:59
CaloRecoStatus::StatusIndicator
StatusIndicator
reconstruction status word
Definition: CaloRecoStatus.h:37
xAOD::CaloCluster_v1::CaloSample
CaloSampling::CaloSample CaloSample
Definition: CaloCluster_v1.h:66
xAOD::CaloCluster_v1::EM_PROBABILITY
@ EM_PROBABILITY
Classification probability to be em-like.
Definition: CaloCluster_v1.h:173
CaloRecoStatus::setStatus
virtual void setStatus(const StatusIndicator &statusIndicator)
Set status.
Definition: CaloRecoStatus.h:107
AthCommonDataStore< AthCommonMsg< AlgTool > >::declareProperty
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T > &t)
Definition: AthCommonDataStore.h:145
CaloClusterProcessor
Definition: CaloClusterProcessor.h:33
xAOD::CaloCluster_v1::insertMoment
void insertMoment(MomentType type, double value)
Definition: CaloCluster_v1.cxx:754
CaloClusterLocalCalib.h
xAOD::CaloCluster_v1::CENTER_LAMBDA
@ CENTER_LAMBDA
Shower depth at Cluster Centroid.
Definition: CaloCluster_v1.h:136
CaloCell::e
virtual double e() const override final
get energy (data member) (synonym to method energy()
Definition: CaloCell.h:317
CaloCompositeCellBase::cell_end
cell_iterator cell_end() const
Retrieve a STL-type end() iterator for the cell store.
xAOD::CaloCluster_v1::setEnergy
bool setEnergy(const CaloSample sampling, const float e)
Set energy for a given sampling. Returns false if the sample isn't part of the cluster.
Definition: CaloCluster_v1.cxx:526
CaloCell::provenance
uint16_t provenance() const
get provenance (data member)
Definition: CaloCell.h:338
CaloCell::time
float time() const
get time (data member)
Definition: CaloCell.h:352
xAOD::CaloCluster
CaloCluster_v1 CaloCluster
Define the latest version of the calorimeter cluster class.
Definition: Event/xAOD/xAODCaloEvent/xAODCaloEvent/CaloCluster.h:19
CaloDetDescrManager.h
Definition of CaloDetDescrManager.
CaloCell_ID.h
AthCommonDataStore< AthCommonMsg< AlgTool > >::detStore
const ServiceHandle< StoreGateSvc > & detStore() const
The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
Definition: AthCommonDataStore.h:95
CaloClusterLocalCalib::m_calibTools
ToolHandleArray< IClusterCellWeightTool > m_calibTools
property: Array of IClusterCellWeightTool
Definition: CaloClusterLocalCalib.h:64
dqt_zlumi_pandas.weight
int weight
Definition: dqt_zlumi_pandas.py:200
xAOD::CaloCluster_v1::DM_WEIGHT
@ DM_WEIGHT
Dead-material weight (E_dm/E_ooc)
Definition: CaloCluster_v1.h:176
xAOD::CaloCluster_v1::setRawE
void setRawE(flt_t)
Set Energy for signal state UNCALIBRATED.
Definition: CaloCluster_v1.cxx:284
xAOD::CaloCluster_v1::HAD_WEIGHT
@ HAD_WEIGHT
Hadronic weight (E_w/E_em)
Definition: CaloCluster_v1.h:174
lumiFormat.i
int i
Definition: lumiFormat.py:92
SG::OWN_ELEMENTS
@ OWN_ELEMENTS
this data object owns its elements
Definition: OwnershipPolicy.h:17
CaloSampling::CaloSample
CaloSample
Definition: Calorimeter/CaloGeoHelpers/CaloGeoHelpers/CaloSampling.h:22
CaloClusterLocalCalib::m_recoStatus
std::vector< int > m_recoStatus
property: vector of valid Reco Statuses for the clusters in order to be calibrated
Definition: CaloClusterLocalCalib.h:69
Identifier
Definition: DetectorDescription/Identifier/Identifier/Identifier.h:32
endmsg
#define endmsg
Definition: AnalysisConfig_Ntuple.cxx:63
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
CaloCell::caloDDE
const CaloDetDescrElement * caloDDE() const
get pointer to CaloDetDescrElement (data member)
Definition: CaloCell.h:305
CaloCluster::insertMoment
void insertMoment(const moment_type &momType, const moment_value &momValue, bool useLink=true)
Set individual moment.
Definition: CaloCluster.cxx:1247
xAOD::CaloCluster_v1::ISOLATION
@ ISOLATION
Energy weighted fraction of non-clustered perimeter cells.
Definition: CaloCluster_v1.h:146
test_pyathena.parent
parent
Definition: test_pyathena.py:15
CaloCluster
Principal data class for CaloCell clusters.
Definition: Calorimeter/CaloEvent/CaloEvent/CaloCluster.h:79
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
CaloClusterLocalCalib::CaloClusterLocalCalib
CaloClusterLocalCalib(const std::string &type, const std::string &name, const IInterface *parent)
Standard AlgTool constructor.
Definition: CaloClusterLocalCalib.cxx:18
CaloCell_ID
Helper class for offline cell identifiers.
Definition: CaloCell_ID.h:34
xAOD::CaloCluster_v1::FIRST_ENG_DENS
@ FIRST_ENG_DENS
First Moment in E/V.
Definition: CaloCluster_v1.h:143
CaloCell::quality
uint16_t quality() const
get quality (data member)
Definition: CaloCell.h:332
CaloRecoStatus::checkStatus
virtual bool checkStatus(const StatusIndicator &statusIndicator) const
Check status.
Definition: CaloRecoStatus.h:117
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
AtlCoolConsole.tool
tool
Definition: AtlCoolConsole.py:453
CaloCompositeCellBase::cell_begin
cell_iterator cell_begin() const
Retrieve a STL-type begin() iterator for the cell store.
CaloCell::gain
CaloGain::CaloGain gain() const
get gain (data member )
Definition: CaloCell.h:345
CaloCell::ID
Identifier ID() const
get ID (from cached data member) non-virtual and inline for fast access
Definition: CaloCell.h:279
CaloCellContainer
Container class for CaloCell.
Definition: CaloCellContainer.h:55
CaloClusterStoreHelper.h
CaloCell
Data object for each calorimeter readout cell.
Definition: CaloCell.h:57
CaloCellContainer::push_back
void push_back(CaloCell *)
reimplementation of const push_back
Definition: CaloCellContainer.cxx:74
python.CaloScaleNoiseConfig.type
type
Definition: CaloScaleNoiseConfig.py:78
xAOD::CaloCluster_v1::addCell
bool addCell(const unsigned index, const double weight)
Method to add a cell to the cluster (Beware: Kinematics not updated!)
Definition: CaloCluster_v1.h:771
xAOD::CaloCluster_v1::cell_end
const_cell_iterator cell_end() const
Definition: CaloCluster_v1.h:813
AthCommonMsg< AlgTool >::msg
MsgStream & msg() const
Definition: AthCommonMsg.h:24
CaloCluster::e
virtual double e() const
Retrieve energy independent of signal state.
Definition: Calorimeter/CaloEvent/CaloEvent/CaloCluster.h:753
CaloClusterKineHelper::calculateKine
static void calculateKine(xAOD::CaloCluster *clu, const bool useweight=true, const bool updateLayers=true, const bool useGPUCriteria=false)
Helper class to calculate cluster kinematics based on cells.
Definition: CaloClusterKineHelper.cxx:223
CaloCluster::retrieveMoment
bool retrieveMoment(const moment_type &momType, moment_value &momValue, bool useLink=true) const
Retrieve individual moment.
Definition: CaloCluster.cxx:1266
IdentifierHash
Definition: IdentifierHash.h:38
xAOD::CaloCluster_v1::hasSampling
bool hasSampling(const CaloSample s) const
Checks if certain smapling contributes to cluster.
Definition: CaloCluster_v1.h:890
CaloRecoStatus
reconstruction status indicator
Definition: CaloRecoStatus.h:12
xAOD::CaloCluster_v1::e
virtual double e() const
The total energy of the particle.
Definition: CaloCluster_v1.cxx:265