Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:21:38

0001 // -*- C++ -*-
0002 //
0003 // Package:     L1Trigger/RPCTechnicalTrigger
0004 // Class  :     RBCConfiguration
0005 //
0006 // Implementation:
0007 //     [Notes on implementation]
0008 //
0009 // Original Author:  Christopher Jones
0010 //         Created:  Thu, 15 Nov 2018 21:02:24 GMT
0011 //
0012 
0013 // system include files
0014 
0015 // user include files
0016 #include "L1Trigger/RPCTechnicalTrigger/interface/RBCConfiguration.h"
0017 
0018 //
0019 // constants, enums and typedefs
0020 //
0021 
0022 //
0023 // static data member definitions
0024 //
0025 
0026 //
0027 // constructors and destructor
0028 //
0029 RBCConfiguration::RBCConfiguration(const RBCBoardSpecs* rbcspecs)
0030     : m_rbcboardspecs{rbcspecs}, m_rbclogic{std::make_unique<RBCLogicUnit>()} {}
0031 
0032 RBCConfiguration::RBCConfiguration(const char* _logic)
0033     : m_rbcboardspecs{nullptr}, m_rbclogic{std::make_unique<RBCLogicUnit>(_logic)} {}