File indexing completed on 2024-04-06 12:02:20
0001 #ifndef CondFormats_L1TObjects_L1GtPsbSetup_h
0002 #define CondFormats_L1TObjects_L1GtPsbSetup_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021 #include "CondFormats/Serialization/interface/Serializable.h"
0022
0023 #include <vector>
0024 #include <iosfwd>
0025
0026
0027 #include "CondFormats/L1TObjects/interface/L1GtPsbConfig.h"
0028
0029
0030
0031
0032 class L1GtPsbSetup {
0033 public:
0034
0035 L1GtPsbSetup();
0036
0037
0038 virtual ~L1GtPsbSetup();
0039
0040 public:
0041
0042 const std::vector<L1GtPsbConfig>& gtPsbSetup() const { return m_gtPsbSetup; }
0043
0044 void setGtPsbSetup(const std::vector<L1GtPsbConfig>&);
0045
0046 void print(std::ostream&) const;
0047
0048
0049 friend std::ostream& operator<<(std::ostream&, const L1GtPsbSetup&);
0050
0051 private:
0052
0053 std::vector<L1GtPsbConfig> m_gtPsbSetup;
0054
0055 COND_SERIALIZABLE;
0056 };
0057
0058 #endif