CMS 3D CMS Logo

DTEtaPatternLutOnlineProd.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: DTEtaPatternLutOnlineProd
4 // Class: DTEtaPatternLutOnlineProd
5 //
13 //
14 // Original Author: Werner Man-Li Sun
15 // Created: Thu Oct 2 19:40:12 CEST 2008
16 // $Id$
17 //
18 //
19 
20 // system include files
21 
22 // user include files
24 
26 
29 
30 //
31 // class declaration
32 //
33 
34 class DTEtaPatternLutOnlineProd : public L1ConfigOnlineProdBase<L1MuDTEtaPatternLutRcd, L1MuDTEtaPatternLut> {
35 public:
37  ~DTEtaPatternLutOnlineProd() override;
38 
39  std::unique_ptr<L1MuDTEtaPatternLut> newObject(const std::string& objectKey) override;
40 
41 private:
42  // ----------member data ---------------------------
43 };
44 
45 //
46 // constants, enums and typedefs
47 //
48 
49 //
50 // static data member definitions
51 //
52 
53 //
54 // constructors and destructor
55 //
58  //the following line is needed to tell the framework what
59  // data is being produced
60 
61  //now do what ever other initialization is needed
62 }
63 
65  // do anything here that needs to be done at desctruction time
66  // (e.g. close files, deallocate resources etc.)
67 }
68 
69 std::unique_ptr<L1MuDTEtaPatternLut> DTEtaPatternLutOnlineProd::newObject(const std::string& objectKey) {
70  edm::LogError("L1-O2O") << "L1MuDTEtaPatternLut object with key " << objectKey << " not in ORCON!";
71 
72  return std::unique_ptr<L1MuDTEtaPatternLut>();
73 }
74 
75 //
76 // member functions
77 //
78 
79 // ------------ method called to produce the data ------------
80 
81 //define this as a plug-in
DTEtaPatternLutOnlineProd(const edm::ParameterSet &)
Log< level::Error, false > LogError
#define DEFINE_FWK_EVENTSETUP_MODULE(type)
Definition: ModuleFactory.h:61
std::unique_ptr< L1MuDTEtaPatternLut > newObject(const std::string &objectKey) override