File indexing completed on 2024-04-06 12:20:30
0001 #ifndef L1Trigger_L1TGlobal_TriggerMenuFwd_h
0002 #define L1Trigger_L1TGlobal_TriggerMenuFwd_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 "L1Trigger/L1TGlobal/interface/GlobalCondition.h"
0025 #include "L1Trigger/L1TGlobal/interface/GlobalAlgorithm.h"
0026
0027
0028 namespace l1t {
0029 typedef std::map<std::string, GlobalCondition*> ConditionMap;
0030
0031
0032 typedef std::map<std::string, GlobalAlgorithm> AlgorithmMap;
0033
0034
0035 typedef ConditionMap::const_iterator CItCond;
0036 typedef ConditionMap::iterator ItCond;
0037
0038
0039 typedef AlgorithmMap::const_iterator CItAlgo;
0040 typedef AlgorithmMap::iterator ItAlgo;
0041
0042 }
0043 #endif