ATLAS Offline Software
AsgEGammaConfigHelper.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 // Dear emacs, this is -*-c++-*-
6 #ifndef ASGELEGAMMACONFIGHELPER_H
7 #define ASGELEGAMMACONFIGHELPER_H
8 
16 #include <map>
17 #include <string>
18 #include <vector>
19 class TEnv;
20 
21 namespace AsgConfigHelper {
22 std::string
23 findConfigFile(const std::string& input,
24  const std::map<std::string, std::string>& configmap);
25 unsigned int
26 findMask(const std::string& input,
27  const std::map<std::string, unsigned int>& maskmap);
28 std::vector<double>
29 HelperDouble(const std::string& input, TEnv& env);
30 std::vector<float>
31 HelperFloat(const std::string& input, TEnv& env);
32 std::vector<int>
33 HelperInt(const std::string& input, TEnv& env);
34 std::vector<std::string>
35 HelperString(const std::string& input, TEnv& env);
36 }
37 
38 #endif // ASGEGAMMACONFIGHELPER_H
AsgConfigHelper::HelperString
std::vector< std::string > HelperString(const std::string &input, TEnv &env)
Definition: AsgEGammaConfigHelper.cxx:122
AsgConfigHelper
Definition: AsgEGammaConfigHelper.h:21
PlotPulseshapeFromCool.input
input
Definition: PlotPulseshapeFromCool.py:106
AsgConfigHelper::HelperInt
std::vector< int > HelperInt(const std::string &input, TEnv &env)
Definition: AsgEGammaConfigHelper.cxx:115
AsgConfigHelper::findMask
unsigned int findMask(const std::string &input, const std::map< std::string, unsigned int > &maskmap)
Definition: AsgEGammaConfigHelper.cxx:29
AsgConfigHelper::HelperFloat
std::vector< float > HelperFloat(const std::string &input, TEnv &env)
Definition: AsgEGammaConfigHelper.cxx:110
python.DataFormatRates.env
env
Definition: DataFormatRates.py:32
AsgConfigHelper::HelperDouble
std::vector< double > HelperDouble(const std::string &input, TEnv &env)
Definition: AsgEGammaConfigHelper.cxx:105
AsgConfigHelper::findConfigFile
std::string findConfigFile(const std::string &input, const std::map< std::string, std::string > &configmap)
Definition: AsgEGammaConfigHelper.cxx:14