Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef CondFormats_L1TObjects_L1GtCaloTemplate_h
0002 #define CondFormats_L1TObjects_L1GtCaloTemplate_h
0003 
0004 /**
0005  * \class L1GtCaloTemplate
0006  *
0007  *
0008  * Description: L1 Global Trigger calo 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 L1GtCaloTemplate : public L1GtCondition {
0035 public:
0036   // constructor
0037   L1GtCaloTemplate();
0038 
0039   // constructor
0040   L1GtCaloTemplate(const std::string&);
0041 
0042   // constructor
0043   L1GtCaloTemplate(const std::string&, const L1GtConditionType&);
0044 
0045   // copy constructor
0046   L1GtCaloTemplate(const L1GtCaloTemplate&);
0047 
0048   // destructor
0049   ~L1GtCaloTemplate() override;
0050 
0051   // assign operator
0052   L1GtCaloTemplate& operator=(const L1GtCaloTemplate&);
0053 
0054 public:
0055   /// typedef for a single object template
0056   struct ObjectParameter {
0057     unsigned int etThreshold;
0058     unsigned int etaRange;
0059     unsigned int phiRange;
0060 
0061     COND_SERIALIZABLE;
0062   };
0063 
0064   /// typedef for correlation parameters
0065   struct CorrelationParameter {
0066     unsigned long long deltaEtaRange;
0067 
0068     unsigned long long deltaPhiRange;
0069     unsigned int deltaPhiMaxbits;
0070 
0071     COND_SERIALIZABLE;
0072   };
0073 
0074 public:
0075   inline const std::vector<ObjectParameter>* objectParameter() const { return &m_objectParameter; }
0076 
0077   inline const CorrelationParameter* correlationParameter() const { return &m_correlationParameter; }
0078 
0079   /// set functions
0080   void setConditionParameter(const std::vector<ObjectParameter>& objParameter,
0081                              const CorrelationParameter& corrParameter);
0082 
0083   /// print the condition
0084   void print(std::ostream& myCout) const override;
0085 
0086   /// output stream operator
0087   friend std::ostream& operator<<(std::ostream&, const L1GtCaloTemplate&);
0088 
0089 protected:
0090   /// copy function for copy constructor and operator=
0091   void copy(const L1GtCaloTemplate& cp);
0092 
0093 protected:
0094   /// variables containing the parameters
0095   std::vector<ObjectParameter> m_objectParameter;
0096   CorrelationParameter m_correlationParameter;
0097 
0098   COND_SERIALIZABLE;
0099 };
0100 
0101 #endif