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
|
//-------------------------------------------------
//
// Class L1MuDTTrackContainer
//
// Description: output data for DTTF trigger
//
//
// Author List: Jorge Troconiz UAM Madrid
//
//
//--------------------------------------------------
#ifndef L1MuDTTrackContainer_H
#define L1MuDTTrackContainer_H
//------------------------------------
// Collaborating Class Declarations --
//------------------------------------
#include "DataFormats/L1DTTrackFinder/interface/L1MuDTTrackCand.h"
//----------------------
// Base Class Headers --
//----------------------
#include <vector>
//---------------
// C++ Headers --
//---------------
// ---------------------
// -- Class Interface --
// ---------------------
class L1MuDTTrackContainer {
public:
typedef std::vector<L1MuDTTrackCand> TrackContainer;
typedef TrackContainer::const_iterator Trackiterator;
typedef TrackContainer::iterator TrackIterator;
// Constructors
L1MuDTTrackContainer();
// Destructor
~L1MuDTTrackContainer();
void setContainer(const TrackContainer& inputTracks);
TrackContainer const* getContainer() const;
bool bxEmpty(int step) const;
int bxSize(int step1, int step2) const;
L1MuDTTrackCand const* dtTrackCand1(int wheel, int sect, int bx) const;
L1MuDTTrackCand const* dtTrackCand2(int wheel, int sect, int bx) const;
private:
TrackContainer dtTracks;
};
#endif
|