Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:27

0001 // -*- C++ -*-
0002 //
0003 // Package:     Notification
0004 // Class  :     SimActivityRegistry
0005 //
0006 // Implementation:
0007 //     <Notes on implementation>
0008 //
0009 // Original Author:  Chris Jones
0010 //         Created:  Sun Nov 13 12:44:58 EST 2005
0011 //
0012 
0013 // system include files
0014 
0015 // user include files
0016 #include "SimG4Core/Notification/interface/SimActivityRegistry.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 //SimActivityRegistry::SimActivityRegistry()
0030 //{
0031 //}
0032 
0033 // SimActivityRegistry::SimActivityRegistry(const SimActivityRegistry& rhs)
0034 // {
0035 //    // do actual copying here;
0036 // }
0037 
0038 //SimActivityRegistry::~SimActivityRegistry()
0039 //{
0040 //}
0041 
0042 //
0043 // assignment operators
0044 //
0045 // const SimActivityRegistry& SimActivityRegistry::operator=(const SimActivityRegistry& rhs)
0046 // {
0047 //   //An exception safe implementation is
0048 //   SimActivityRegistry temp(rhs);
0049 //   swap(rhs);
0050 //
0051 //   return *this;
0052 // }
0053 
0054 //
0055 // member functions
0056 //
0057 void SimActivityRegistry::connect(SimActivityRegistry& iOther) {
0058   beginOfJobSignal_.connect(iOther.beginOfJobSignal_);
0059   dddWorldSignal_.connect(iOther.dddWorldSignal_);
0060   beginOfRunSignal_.connect(iOther.beginOfRunSignal_);
0061   beginOfEventSignal_.connect(iOther.beginOfEventSignal_);
0062   beginOfTrackSignal_.connect(iOther.beginOfTrackSignal_);
0063   g4StepSignal_.connect(iOther.g4StepSignal_);
0064 
0065   endOfRunSignal_.connect(iOther.endOfRunSignal_);
0066   endOfEventSignal_.connect(iOther.endOfEventSignal_);
0067   endOfTrackSignal_.connect(iOther.endOfTrackSignal_);
0068 }
0069 //
0070 // const member functions
0071 //
0072 
0073 //
0074 // static member functions
0075 //