1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#ifndef DataFormats_L1TGlobal_GlobalObjectMapFwd_h
#define DataFormats_L1TGlobal_GlobalObjectMapFwd_h
/**
* \class GlobalObjectMapFwd
*
*
* Description: group typedefs used by GlobalObjectMap.
*
* Implementation:
* <TODO: enter implementation details>
*
* \author: Vasile Mihai Ghete - HEPHY Vienna
*
*
*/
// system include files
#include <utility>
#include <vector>
// user include files
#include "DataFormats/L1TGlobal/interface/GlobalObject.h"
// forward declarations
/// typedefs
typedef int16_t L1TObjBxIndexType;
typedef int L1TObjIndexType;
/// list of object indices:bx pairs corresponding to a condition evaluated to true
typedef std::vector<std::pair<L1TObjBxIndexType, L1TObjIndexType>> SingleCombWithBxInCond;
/// all the object combinations evaluated to true in the condition (object indices + BX indices)
typedef std::vector<SingleCombWithBxInCond> CombinationsWithBxInCond;
typedef std::vector<l1t::GlobalObject> L1TObjectTypeInCond;
#endif
|