File indexing completed on 2024-04-06 12:02:20
0001 #ifndef CondFormats_L1TObjects_L1GtTriggerMenuFwd_h
0002 #define CondFormats_L1TObjects_L1GtTriggerMenuFwd_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020 #include <string>
0021 #include <map>
0022
0023
0024 #include "CondFormats/L1TObjects/interface/L1GtCondition.h"
0025 #include "CondFormats/L1TObjects/interface/L1GtAlgorithm.h"
0026
0027
0028 typedef std::map<std::string, L1GtCondition*> ConditionMap;
0029
0030
0031 typedef std::map<std::string, L1GtAlgorithm> AlgorithmMap;
0032
0033
0034 typedef ConditionMap::const_iterator CItCond;
0035 typedef ConditionMap::iterator ItCond;
0036
0037
0038 typedef AlgorithmMap::const_iterator CItAlgo;
0039 typedef AlgorithmMap::iterator ItAlgo;
0040
0041 #endif