Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-04-15 22:41:22

0001 //-------------------------------------------------
0002 //
0003 //   Class L1Phase2MuDTShowerContainer
0004 //
0005 //   Description: trigger primtive data for the
0006 //                muon barrel Phase2 trigger shower
0007 //
0008 //
0009 //   Author List: Daniel Estrada Acevedo Oviedo Spain
0010 //
0011 //
0012 //--------------------------------------------------
0013 #ifndef L1Phase2MuDTShowerContainer_H
0014 #define L1Phase2MuDTShowerContainer_H
0015 
0016 //------------------------------------
0017 // Collaborating Class Declarations --
0018 //------------------------------------
0019 #include "DataFormats/L1DTTrackFinder/interface/L1Phase2MuDTShower.h"
0020 
0021 //----------------------
0022 // Base Class Headers --
0023 //----------------------
0024 #include <vector>
0025 
0026 //              ---------------------
0027 //              -- Class Interface --
0028 //              ---------------------
0029 
0030 class L1Phase2MuDTShowerContainer {
0031 public:
0032   typedef std::vector<L1Phase2MuDTShower> Shower_Container;
0033   typedef Shower_Container::const_iterator Shower_iterator;
0034 
0035   //  Constructor
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