Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-05-11 08:50:04

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 //
0011 //==========================================================================
0012 #ifndef DDG4_FILEPARAMETERS_H
0013 #define DDG4_FILEPARAMETERS_H
0014 
0015 #include <DDG4/ExtensionParameters.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     /// Extension to pass input run data to output run data
0024     /**
0025      *  \version 1.0
0026      *  \ingroup DD4HEP_SIMULATION
0027      */
0028     class FileParameters: public ExtensionParameters {
0029     public:
0030       /// Copy the parameters from source
0031       template <class T> void ingestParameters(T const& source);
0032       /// Put parameters into destination
0033       template <class T> void extractParameters(T& destination);
0034     };
0035 
0036   }     /* End namespace sim   */
0037 }       /* End namespace dd4hep */
0038 #endif // DDG4_FILEPARAMETERS_H