File indexing completed on 2025-04-15 22:41:22
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #ifndef L1Phase2MuDTShowerContainer_H
0014 #define L1Phase2MuDTShowerContainer_H
0015
0016
0017
0018
0019 #include "DataFormats/L1DTTrackFinder/interface/L1Phase2MuDTShower.h"
0020
0021
0022
0023
0024 #include <vector>
0025
0026
0027
0028
0029
0030 class L1Phase2MuDTShowerContainer {
0031 public:
0032 typedef std::vector<L1Phase2MuDTShower> Shower_Container;
0033 typedef Shower_Container::const_iterator Shower_iterator;
0034
0035
0036 L1Phase2MuDTShowerContainer();
0037
0038 void setContainer(const Shower_Container& inputShowers);
0039
0040 Shower_Container const* getContainer() const;
0041
0042 private:
0043 Shower_Container m_showers;
0044 };
0045
0046 #endif