/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimG4Core/Notification/src/SimActivityRegistry.cc
75 строк
2 KB
Cms Build
Clang-Format
09 май 2019, 07:18
09 май 2019, 07:18
99dbf5b
Код
Авторство
О чём код?
// -*- C++ -*- // // Package: Notification // Class : SimActivityRegistry // // Implementation: // <Notes on implementation> // // Original Author: Chris Jones // Created: Sun Nov 13 12:44:58 EST 2005 // // system include files // user include files #include "SimG4Core/Notification/interface/SimActivityRegistry.h" // // constants, enums and typedefs // // // static data member definitions // // // constructors and destructor // //SimActivityRegistry::SimActivityRegistry() //{ //} // SimActivityRegistry::SimActivityRegistry(const SimActivityRegistry& rhs) // { // // do actual copying here; // } //SimActivityRegistry::~SimActivityRegistry() //{ //} // // assignment operators // // const SimActivityRegistry& SimActivityRegistry::operator=(const SimActivityRegistry& rhs) // { // //An exception safe implementation is // SimActivityRegistry temp(rhs); // swap(rhs); // // return *this; // } // // member functions // void SimActivityRegistry::connect(SimActivityRegistry& iOther) { beginOfJobSignal_.connect(iOther.beginOfJobSignal_); dddWorldSignal_.connect(iOther.dddWorldSignal_); beginOfRunSignal_.connect(iOther.beginOfRunSignal_); beginOfEventSignal_.connect(iOther.beginOfEventSignal_); beginOfTrackSignal_.connect(iOther.beginOfTrackSignal_); g4StepSignal_.connect(iOther.g4StepSignal_); endOfRunSignal_.connect(iOther.endOfRunSignal_); endOfEventSignal_.connect(iOther.endOfEventSignal_); endOfTrackSignal_.connect(iOther.endOfTrackSignal_); } // // const member functions // // // static member functions //