/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondTools/L1Trigger/plugins/L1TriggerKeyListDummyProd.cc
66 строк
2 KB
Cms Build
Clang-Format
29 май 2019, 08:24
29 май 2019, 08:24
1514b97
Код
Авторство
О чём код?
// -*- C++ -*- // // Package: L1TriggerKeyListDummyProd // Class: L1TriggerKeyListDummyProd // /**\class L1TriggerKeyListDummyProd L1TriggerKeyListDummyProd.h CondTools/L1TriggerKeyListDummyProd/src/L1TriggerKeyListDummyProd.cc Description: <one line class summary> Implementation: <Notes on implementation> */ // // Original Author: Werner Man-Li Sun // Created: Sat Mar 1 05:02:13 CET 2008 // $Id$ // // // system include files // user include files #include "CondTools/L1Trigger/plugins/L1TriggerKeyListDummyProd.h" // // class declaration // // // constants, enums and typedefs // // // static data member definitions // // // constructors and destructor // L1TriggerKeyListDummyProd::L1TriggerKeyListDummyProd(const edm::ParameterSet& iConfig) { //the following line is needed to tell the framework what // data is being produced setWhatProduced(this); //now do what ever other initialization is needed } L1TriggerKeyListDummyProd::~L1TriggerKeyListDummyProd() { // do anything here that needs to be done at desctruction time // (e.g. close files, deallocate resources etc.) } // // member functions // // ------------ method called to produce the data ------------ L1TriggerKeyListDummyProd::ReturnType L1TriggerKeyListDummyProd::produce(const L1TriggerKeyListRcd& iRecord) { std::unique_ptr<L1TriggerKeyList> pL1TriggerKeyList; pL1TriggerKeyList = std::make_unique<L1TriggerKeyList>(); return pL1TriggerKeyList; // return std::make_unique< L1TriggerKeyList >() ; } //define this as a plug-in //DEFINE_FWK_EVENTSETUP_MODULE(L1TriggerKeyListDummyProd);