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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
//-------------------------------------------------
//
// Class L1Phase2MuDTExtThDigi
//
// Description: trigger primtive data for the
// muon barrel Phase2 trigger
//
//
// Author List: Nicolo' Trevisani - Oviedo
//
//
//--------------------------------------------------
#ifndef L1Phase2MuDTExtThDigi_H
#define L1Phase2MuDTExtThDigi_H
//------------------------------------
// Collaborating Class Declarations --
//------------------------------------
#include "DataFormats/L1DTTrackFinder/interface/L1Phase2MuDTThDigi.h"
//----------------------
// Base Class Headers --
//----------------------
//---------------
// C++ Headers --
//---------------
// ---------------------
// -- Class Interface --
// ---------------------
class L1Phase2MuDTExtThDigi : public L1Phase2MuDTThDigi {
public:
// Constructors
L1Phase2MuDTExtThDigi();
L1Phase2MuDTExtThDigi(int bx,
int wh,
int sc,
int st,
int z,
int k,
int qual,
int idx,
int t0,
int chi2,
int y,
int z_cmssw,
int k_cmssw,
int rpc = -10,
int wireId[4] = nullptr,
int tdc[4] = nullptr,
int lat[4] = nullptr);
L1Phase2MuDTExtThDigi(const L1Phase2MuDTExtThDigi &digi);
~L1Phase2MuDTExtThDigi() override {}
// Operations
int yLocal() const;
int zCMSSW() const;
int kCMSSW() const;
int pathWireId(int) const;
int pathTDC(int) const;
int pathLat(int) const;
private:
int m_yLocal;
int m_zCMSSW;
int m_kCMSSW;
int m_pathWireId[4];
int m_pathTDC[4];
int m_pathLat[4];
};
#endif
|