Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:55:22

0001 //==========================================================================
0002 //  AIDA Detector description implementation 
0003 //--------------------------------------------------------------------------
0004 // Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
0005 // All rights reserved.
0006 //
0007 // For the licensing terms see $DD4hepINSTALL/LICENSE.
0008 // For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
0009 //
0010 // Author     : M.Frank
0011 //
0012 //==========================================================================
0013 
0014 #ifndef DDG4_GEANT4CALL_H
0015 #define DDG4_GEANT4CALL_H
0016 
0017 /// Namespace for the AIDA detector description toolkit
0018 namespace dd4hep {
0019 
0020   /// Namespace for the Geant4 based simulation part of the AIDA detector description toolkit
0021   namespace sim {
0022 
0023     /// Callback interface class with argument
0024     /**
0025      *  \author  M.Frank
0026      *  \version 1.0
0027      *  \ingroup DD4HEP_SIMULATION
0028      */
0029     class  Geant4Call   {
0030     public:
0031       /// Default destructor
0032       virtual ~Geant4Call();
0033       /// Default callback with argument
0034       virtual void operator()(void* param) = 0;
0035     };
0036 
0037   }    // End namespace sim
0038 }      // End namespace dd4hep
0039 #endif // DDG4_GEANT4CALL_H