Skip to content
Snippets Groups Projects
Commit 06ecd05d authored by Lottie Cavanagh's avatar Lottie Cavanagh
Browse files

test change axis label

parent 175be27d
No related branches found
No related tags found
1 merge request!126Master 22.0.29 ecal
...@@ -9,13 +9,13 @@ CaloSimHitAlg::~CaloSimHitAlg() { } ...@@ -9,13 +9,13 @@ CaloSimHitAlg::~CaloSimHitAlg() { }
StatusCode CaloSimHitAlg::initialize() StatusCode CaloSimHitAlg::initialize()
{ {
// initialize a histogram // initialize a histogram
// letter at end of TH1 indicated variable type (D double, F float etc) // letter at end of TH1 indicated variable type (D double, F float etc)
// first string is root object name, second is histogram title // first string is root object name, second is histogram title
m_eloss = new TH1D("eLoss", "Calo Hit Energy Loss fraction", 1000, 0, 0.0001); m_eloss = new TH1D("eLoss", "Calo Hit Energy Loss fraction;Fraction;Events", 1000, 0, 0.0001);
m_elossTL = new TH1D("eLossTL", "Calo Hit Energy Loss Fraction Top Left Module", 1000, 0, 0.0001); m_elossTL = new TH1D("eLossTL", "Calo Hit Energy Loss Fraction Top Left Module", 1000, 0, 0.0001);
m_elossTR = new TH1D("eLossTR", "Calo Hit Energy Loss Fraction Top Right Module", 1000, 0, 0.0001); m_elossTR = new TH1D("eLossTR", "Calo Hit Energy Loss Fraction Top Right Module", 1000, 0, 0.0001);
m_elossBR = new TH1D("eLossBR", "Calo Hit Energy Loss Fraction Bottom Right Module", 1000, 0, 0.0001); m_elossBR = new TH1D("eLossBR", "Calo Hit Energy Loss Fraction Bottom Right Module", 1000, 0, 0.0001);
......
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