ATLAS Offline Software
Loading...
Searching...
No Matches
ShowerLibStatistics.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5/*
6 * FCALDistEnergyShowerLibStatistics.h
7 *
8 * Created on: Feb 24, 2012
9 * Author: sedov
10 */
11
12#ifndef SHOWERLIBSTATISTICS_H_
13#define SHOWERLIBSTATISTICS_H_
14
15#include <map>
16#include <string>
17
18namespace ShowerLib {
19
21public:
22 ShowerLibStatistics(const std::map<int,std::string>& bincaptions,
23 const std::map<int,int>& binsizes);
24 void recordShowerLibUse(int binkey);
25 const std::string statistics();
26private:
27
29 std::map<int,int> m_calls;
30 std::map<int,std::string> m_binstrings;
31 std::map<int,int> m_binsizes;
32
33};
34
35
36} /* namespace ShowerLib */
37#endif /* SHOWERLIBSTATISTICS_H_ */
std::map< int, std::string > m_binstrings
ShowerLibStatistics(const std::map< int, std::string > &bincaptions, const std::map< int, int > &binsizes)
Namespace for the ShowerLib related classes.
Definition StepInfo.h:17