Back to home page

EIC code displayed by LXR

 
 

    


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

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 #include "Parsers/spirit/ParsersFactory.h"
0012 
0013 PARSERS_DEF_FOR_SINGLE(bool)
0014 PARSERS_DEF_FOR_SINGLE(int)
0015 PARSERS_DEF_FOR_SINGLE(long)
0016 PARSERS_DEF_FOR_SINGLE(double)
0017 PARSERS_DEF_FOR_SINGLE(float)
0018 PARSERS_DEF_FOR_SINGLE(std::string)
0019 
0020 #if defined(DD4HEP_HAVE_ALL_PARSERS)
0021 PARSERS_DEF_FOR_SINGLE(char)
0022 PARSERS_DEF_FOR_SINGLE(short)
0023 PARSERS_DEF_FOR_SINGLE(unsigned char)
0024 PARSERS_DEF_FOR_SINGLE(signed char)
0025 PARSERS_DEF_FOR_SINGLE(unsigned short)
0026 PARSERS_DEF_FOR_SINGLE(unsigned int)
0027 PARSERS_DEF_FOR_SINGLE(unsigned long)
0028 PARSERS_DEF_FOR_SINGLE(long long)
0029 PARSERS_DEF_FOR_SINGLE(unsigned long long)
0030 PARSERS_DEF_FOR_SINGLE(long double)
0031 #endif