Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:20

0001 #ifndef CondFormats_L1TObjects_L1GtHfRingEtSumsTemplate_h
0002 #define CondFormats_L1TObjects_L1GtHfRingEtSumsTemplate_h
0003 
0004 /**
0005  * \class L1GtHfRingEtSumsTemplate
0006  *
0007  *
0008  * Description: L1 Global Trigger "HF Ring ET sums" template.
0009  *
0010  * Implementation:
0011  *    <TODO: enter implementation details>
0012  *
0013  * \author: Vasile Mihai Ghete - HEPHY Vienna
0014  *
0015  * $Date$
0016  * $Revision$
0017  *
0018  */
0019 
0020 // system include files
0021 #include "CondFormats/Serialization/interface/Serializable.h"
0022 
0023 #include <string>
0024 #include <iosfwd>
0025 
0026 // user include files
0027 
0028 //   base class
0029 #include "CondFormats/L1TObjects/interface/L1GtCondition.h"
0030 
0031 // forward declarations
0032 
0033 // class declaration
0034 class L1GtHfRingEtSumsTemplate : public L1GtCondition {
0035 public:
0036   // constructor
0037   L1GtHfRingEtSumsTemplate();
0038 
0039   // constructor
0040   L1GtHfRingEtSumsTemplate(const std::string&);
0041 
0042   // constructor
0043   L1GtHfRingEtSumsTemplate(const std::string&, const L1GtConditionType&);
0044 
0045   // copy constructor
0046   L1GtHfRingEtSumsTemplate(const L1GtHfRingEtSumsTemplate&);
0047 
0048   // destructor
0049   ~L1GtHfRingEtSumsTemplate() override;
0050 
0051   // assign operator
0052   L1GtHfRingEtSumsTemplate& operator=(const L1GtHfRingEtSumsTemplate&);
0053 
0054 public:
0055   /// typedef for a single object template
0056   struct ObjectParameter {
0057     unsigned int etSumIndex;
0058     unsigned int etSumThreshold;
0059 
0060     COND_SERIALIZABLE;
0061   };
0062 
0063 public:
0064   inline const std::vector<ObjectParameter>* objectParameter() const { return &m_objectParameter; }
0065 
0066   /// set functions
0067   void setConditionParameter(const std::vector<ObjectParameter>&);
0068 
0069   /// print the condition
0070   void print(std::ostream& myCout) const override;
0071 
0072   /// output stream operator
0073   friend std::ostream& operator<<(std::ostream&, const L1GtHfRingEtSumsTemplate&);
0074 
0075 private:
0076   /// copy function for copy constructor and operator=
0077   void copy(const L1GtHfRingEtSumsTemplate& cp);
0078 
0079 private:
0080   /// variables containing the parameters
0081   std::vector<ObjectParameter> m_objectParameter;
0082 
0083   COND_SERIALIZABLE;
0084 };
0085 
0086 #endif