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/ParsersStandardMiscCommon.h"
0012 
0013 /// Namespace for the AIDA detector description toolkit
0014 namespace dd4hep {
0015   /// Namespace for the AIDA detector for utilities using boost::spirit parsers
0016   namespace Parsers {
0017 
0018     template <> int parse(std::vector<std::vector<double> >& result, const std::string& input) {
0019       return parse_(result, input);
0020     }
0021   }
0022 }