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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#ifndef L1GlobalTrigger_L1GlobalTriggerReadoutSetupFwd_h
#define L1GlobalTrigger_L1GlobalTriggerReadoutSetupFwd_h
/**
* \class L1GlobalTriggerReadoutSetup
*
*
* Description: group typedefs for GT readout record.
*
* Implementation:
* <TODO: enter implementation details>
*
* \author: Vasile Mihai Ghete - HEPHY Vienna
*
*
*/
// system include files
#include <vector>
// user include files
#include "FWCore/Utilities/interface/typedefs.h"
// base class
//
// for compatibility reasons; L1GtObject moved to separate file
#include "DataFormats/L1GlobalTrigger/interface/L1GtObject.h"
// forward declarations
/// typedefs
/// algorithm bits: 128 bits
typedef std::vector<bool> DecisionWord;
/// extend DecisionWord with 64 bits
/// need a new FDL chip :-)
typedef std::vector<bool> DecisionWordExtended;
/// technical trigger bits (64 bits)
typedef std::vector<bool> TechnicalTriggerWord;
// muons
typedef unsigned MuonDataWord;
// e-gamma, jet objects
typedef cms_uint16_t CaloDataWord;
// missing Et
typedef cms_uint32_t CaloMissingEtWord;
// twelve jet counts, encoded in five bits per count; six jets per 32-bit word
// code jet count = 31 indicate overflow condition
typedef std::vector<unsigned> CaloJetCountsWord;
#endif /*L1GlobalTrigger_L1GlobalTriggerReadoutSetupFwd_h*/
|