Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #ifndef EXAMPLES_DDG4_SRC_DICTIONARY_H
0002 #define EXAMPLES_DDG4_SRC_DICTIONARY_H
0003 
0004 //==========================================================================
0005 //  AIDA Detector description implementation 
0006 //--------------------------------------------------------------------------
0007 // Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
0008 // All rights reserved.
0009 //
0010 // For the licensing terms see $DD4hepINSTALL/LICENSE.
0011 // For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
0012 //
0013 // Author     : M.Frank
0014 //
0015 //==========================================================================
0016 // -------------------------------------------------------------------------
0017 // Regular dd4hep dictionaries
0018 // -------------------------------------------------------------------------
0019 #ifdef DD4HEP_DICTIONARY_MODE
0020 
0021 #include <map>
0022 #include <vector>
0023 
0024 #pragma link off all globals;
0025 #pragma link off all classes;
0026 #pragma link off all functions;
0027 
0028 
0029 using namespace std;
0030 
0031 // Define here the classes we want to write to the output file:
0032 #pragma link C++ class std::vector<double>+;
0033 #pragma link C++ class std::pair<double, std::vector<double> >+;
0034 
0035 /// This is to make ROOT happy....
0036 struct Disctionary {};
0037 
0038 
0039 #endif   // DD4HEP_DICTIONARY_MODE
0040 
0041 #endif