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
|
//-------------------------------------------------
//
// Class L1MuDTChambThContainer
//
// Description: input data for ETTF trigger
//
//
// Author List: Jorge Troconiz UAM Madrid
//
//
//--------------------------------------------------
#ifndef L1MuDTChambThContainer_H
#define L1MuDTChambThContainer_H
//------------------------------------
// Collaborating Class Declarations --
//------------------------------------
#include "DataFormats/L1DTTrackFinder/interface/L1MuDTChambThDigi.h"
//----------------------
// Base Class Headers --
//----------------------
#include <vector>
//---------------
// C++ Headers --
//---------------
// ---------------------
// -- Class Interface --
// ---------------------
class L1MuDTChambThContainer {
public:
typedef std::vector<L1MuDTChambThDigi> The_Container;
typedef The_Container::const_iterator The_iterator;
// Constructors
L1MuDTChambThContainer() = default;
L1MuDTChambThContainer(The_Container);
// Destructor
~L1MuDTChambThContainer() = default;
void setContainer(The_Container inputSegments);
The_Container const* getContainer() const;
bool bxEmpty(int step) const;
int bxSize(int step1, int step2) const;
L1MuDTChambThDigi const* chThetaSegm(int wheel, int stat, int sect, int bx) const;
private:
The_Container theSegments;
};
#endif
|