File indexing completed on 2024-04-06 12:04:26
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #ifndef L1Phase2MuDTPhContainer_H
0014 #define L1Phase2MuDTPhContainer_H
0015
0016
0017
0018
0019 #include "DataFormats/L1DTTrackFinder/interface/L1Phase2MuDTPhDigi.h"
0020
0021
0022
0023
0024 #include <vector>
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034 class L1Phase2MuDTPhContainer {
0035 public:
0036 typedef std::vector<L1Phase2MuDTPhDigi> Segment_Container;
0037 typedef Segment_Container::const_iterator Segment_iterator;
0038
0039
0040 L1Phase2MuDTPhContainer();
0041
0042 void setContainer(const Segment_Container& inputSegments);
0043
0044 Segment_Container const* getContainer() const;
0045
0046 private:
0047 Segment_Container m_segments;
0048 };
0049
0050 #endif