diff --git a/Control/AthenaConfiguration/python/iconfTool/utils/__init__.py b/Control/AthenaConfiguration/python/iconfTool/utils/__init__.py old mode 100644 new mode 100755 diff --git a/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/CMakeLists.txt b/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/CMakeLists.txt index e7f07e8b2031834ffc586aea72f45650f54f29d0..413eb3383422bbaeafe95b134acf7b5becd48424 100644 --- a/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/CMakeLists.txt +++ b/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/CMakeLists.txt @@ -61,6 +61,7 @@ atlas_add_root_dictionary( ISF_FastCaloSimEvent _dictSource ISF_FastCaloSimEvent/TFCSLateralShapeParametrizationHitChain.h ISF_FastCaloSimEvent/TFCSCenterPositionCalculation.h ISF_FastCaloSimEvent/TFCSHistoLateralShapeParametrization.h + ISF_FastCaloSimEvent/TFCSHistoLateralShapeParametrizationFCal.h ISF_FastCaloSimEvent/TFCSLateralShapeParametrizationHitNumberFromE.h ISF_FastCaloSimEvent/TFCSHitCellMapping.h ISF_FastCaloSimEvent/TFCSHitCellMappingFCal.h diff --git a/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/ISF_FastCaloSimEvent/LinkDef.h b/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/ISF_FastCaloSimEvent/LinkDef.h index 4979ed94f1f9b1e0a1a189dbdd7b737ca2d236e7..ffce63d8d40aac7be68aa41367d975c00201c813 100644 --- a/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/ISF_FastCaloSimEvent/LinkDef.h +++ b/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/ISF_FastCaloSimEvent/LinkDef.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration */ #include "ISF_FastCaloSimEvent/DoubleArray.h" @@ -41,6 +41,7 @@ #include "ISF_FastCaloSimEvent/TFCSLateralShapeParametrizationHitChain.h" #include "ISF_FastCaloSimEvent/TFCSCenterPositionCalculation.h" #include "ISF_FastCaloSimEvent/TFCSHistoLateralShapeParametrization.h" +#include "ISF_FastCaloSimEvent/TFCSHistoLateralShapeParametrizationFCal.h" #include "ISF_FastCaloSimEvent/TFCSLateralShapeParametrizationHitNumberFromE.h" #include "ISF_FastCaloSimEvent/TFCSHitCellMapping.h" #include "ISF_FastCaloSimEvent/TFCSHitCellMappingFCal.h" @@ -148,6 +149,7 @@ #pragma link C++ class TFCSLateralShapeParametrizationHitChain+; #pragma link C++ class TFCSCenterPositionCalculation+; #pragma link C++ class TFCSHistoLateralShapeParametrization+; +#pragma link C++ class TFCSHistoLateralShapeParametrizationFCal+; #pragma link C++ class TFCSLateralShapeParametrizationHitNumberFromE+; #pragma link C++ class TFCSHitCellMapping+; #pragma link C++ class TFCSHitCellMappingFCal+; diff --git a/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/ISF_FastCaloSimEvent/TFCSHistoLateralShapeParametrization.h b/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/ISF_FastCaloSimEvent/TFCSHistoLateralShapeParametrization.h index 6066bad3d8f24b58b8ec4a9609d8d9fe69bb1d5c..1f6f406bef02dafcd73a74633f24b04d704c7d53 100644 --- a/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/ISF_FastCaloSimEvent/TFCSHistoLateralShapeParametrization.h +++ b/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/ISF_FastCaloSimEvent/TFCSHistoLateralShapeParametrization.h @@ -45,11 +45,13 @@ public: const TFCS2DFunctionHistogram& histogram() const {return m_hist;}; void Print(Option_t *option = "") const override; -private: +protected: /// Histogram to be used for the shape simulation TFCS2DFunctionHistogram m_hist; float m_nhits; +private: + ClassDefOverride(TFCSHistoLateralShapeParametrization,1) //TFCSHistoLateralShapeParametrization }; diff --git a/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/ISF_FastCaloSimEvent/TFCSHistoLateralShapeParametrizationFCal.h b/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/ISF_FastCaloSimEvent/TFCSHistoLateralShapeParametrizationFCal.h new file mode 100644 index 0000000000000000000000000000000000000000..46e934939c9b51d535779854824223658f1abd0f --- /dev/null +++ b/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/ISF_FastCaloSimEvent/TFCSHistoLateralShapeParametrizationFCal.h @@ -0,0 +1,29 @@ +/* + Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration +*/ + +#ifndef TFCSHistoLateralShapeParametrizationFCal_h +#define TFCSHistoLateralShapeParametrizationFCal_h + +#include "ISF_FastCaloSimEvent/TFCSHistoLateralShapeParametrization.h" +#include "ISF_FastCaloSimEvent/TFCS2DFunctionHistogram.h" + +class TH2; + +class TFCSHistoLateralShapeParametrizationFCal:public TFCSHistoLateralShapeParametrization { +public: + TFCSHistoLateralShapeParametrizationFCal(const char* name=nullptr, const char* title=nullptr); + ~TFCSHistoLateralShapeParametrizationFCal(); + + virtual FCSReturnCode simulate_hit(Hit& hit,TFCSSimulationState& simulstate,const TFCSTruthState* truth, const TFCSExtrapolationState* extrapol) override; + +private: + + ClassDefOverride(TFCSHistoLateralShapeParametrizationFCal,1) //TFCSHistoLateralShapeParametrizationFCal +}; + +#if defined(__ROOTCLING__) && defined(__FastCaloSimStandAlone__) +#pragma link C++ class TFCSHistoLateralShapeParametrizationFCal+; +#endif + +#endif diff --git a/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/src/TFCSHistoLateralShapeParametrization.cxx b/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/src/TFCSHistoLateralShapeParametrization.cxx index 733d4067ef616c2863bc4b168775e697b5072eb5..4a5db9df5f08b96acbe38fbe26ae80a0576f596a 100644 --- a/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/src/TFCSHistoLateralShapeParametrization.cxx +++ b/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/src/TFCSHistoLateralShapeParametrization.cxx @@ -93,10 +93,9 @@ FCSReturnCode TFCSHistoLateralShapeParametrization::simulate_hit(Hit &hit, TFCSS const float delta_eta = delta_eta_mm / eta_jakobi / dist000; const float delta_phi = delta_phi_mm / center_r; - hit.eta() = center_eta + delta_eta; - hit.phi() = center_phi + delta_phi; + hit.setEtaPhiZE(center_eta + delta_eta,center_phi + delta_phi,center_z, hit.E()); - ATH_MSG_DEBUG("HIT: E="<<hit.E()<<" cs="<<cs<<" eta="<<hit.eta()<<" phi="<<hit.phi()<<" r="<<r<<" alpha="<<alpha); + ATH_MSG_DEBUG("HIT: E="<<hit.E()<<" cs="<<cs<<" eta="<<hit.eta()<<" phi="<<hit.phi()<< " z="<<hit.z()<<" r="<<r<<" alpha="<<alpha); return FCSSuccess; } diff --git a/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/src/TFCSHistoLateralShapeParametrizationFCal.cxx b/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/src/TFCSHistoLateralShapeParametrizationFCal.cxx new file mode 100644 index 0000000000000000000000000000000000000000..430377069720f24e18a2df59e446d5fbe1e25ae0 --- /dev/null +++ b/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimEvent/src/TFCSHistoLateralShapeParametrizationFCal.cxx @@ -0,0 +1,76 @@ +/* + Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration +*/ + +#include "CLHEP/Random/RandFlat.h" +#include "CLHEP/Random/RandPoisson.h" + +#include "ISF_FastCaloSimEvent/TFCSHistoLateralShapeParametrizationFCal.h" +#include "ISF_FastCaloSimEvent/TFCSSimulationState.h" +#include "ISF_FastCaloSimEvent/TFCSExtrapolationState.h" + +#include "TMath.h" + + +//============================================= +//======= TFCSHistoLateralShapeParametrizationFCal ========= +//============================================= + +TFCSHistoLateralShapeParametrizationFCal::TFCSHistoLateralShapeParametrizationFCal(const char* name, const char* title) : + TFCSHistoLateralShapeParametrization(name,title) +{ +} + +TFCSHistoLateralShapeParametrizationFCal::~TFCSHistoLateralShapeParametrizationFCal() +{ +} + +FCSReturnCode TFCSHistoLateralShapeParametrizationFCal::simulate_hit(Hit &hit, TFCSSimulationState &simulstate, const TFCSTruthState* /*truth*/, const TFCSExtrapolationState* extrapol) +{ + if (!simulstate.randomEngine()) { + return FCSFatal; + } + + const int cs=calosample(); + const double center_phi=0.5*( extrapol->phi(cs, CaloSubPos::SUBPOS_ENT) + extrapol->phi(cs, CaloSubPos::SUBPOS_EXT) ); + const double center_r=0.5*( extrapol->r(cs, CaloSubPos::SUBPOS_ENT) + extrapol->r(cs, CaloSubPos::SUBPOS_EXT) ); + const double center_z=0.5*( extrapol->z(cs, CaloSubPos::SUBPOS_ENT) + extrapol->z(cs, CaloSubPos::SUBPOS_EXT) ); + + const double center_x=center_r*cos(center_phi); + const double center_y=center_r*sin(center_phi); + + float alpha, r, rnd1, rnd2; + rnd1 = CLHEP::RandFlat::shoot(simulstate.randomEngine()); + rnd2 = CLHEP::RandFlat::shoot(simulstate.randomEngine()); + if(is_phi_symmetric()) { + if(rnd2>=0.5) { //Fill negative phi half of shape + rnd2-=0.5; + rnd2*=2; + m_hist.rnd_to_fct(alpha,r,rnd1,rnd2); + alpha=-alpha; + } else { //Fill positive phi half of shape + rnd2*=2; + m_hist.rnd_to_fct(alpha,r,rnd1,rnd2); + } + } else { + m_hist.rnd_to_fct(alpha,r,rnd1,rnd2); + } + if(TMath::IsNaN(alpha) || TMath::IsNaN(r)) { + ATH_MSG_ERROR(" Histogram: "<<m_hist.get_HistoBordersx().size()-1<<"*"<<m_hist.get_HistoBordersy().size()-1<<" bins, #hits="<<m_nhits<<" alpha="<<alpha<<" r="<<r<<" rnd1="<<rnd1<<" rnd2="<<rnd2); + alpha=0; + r=0.001; + + ATH_MSG_ERROR(" This error could probably be retried"); + return FCSFatal; + } + + const float delta_x = r * cos(alpha); + const float delta_y = r * sin(alpha); + + hit.setXYZE(center_x+delta_x,center_y+delta_y,center_z,hit.E()); + + ATH_MSG_DEBUG("HIT: E="<<hit.E()<<" cs="<<cs<<" x="<<hit.x()<<" y="<<hit.y()<<" z="<<hit.z()<<" r=" << r <<" alpha="<<alpha); + + return FCSSuccess; +} +