|
||||
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 //========================================================================== 0012 // Include files 0013 //========================================================================== 0014 #ifndef DD4HEP_PARSERS_NO_ROOT 0015 #include "Parsers/spirit/ParsersStandardListCommon.h" 0016 0017 namespace ROOT { namespace Math { 0018 bool operator<(const XYZVector& a, const XYZVector& b) { 0019 if ( a.X() < b.X() ) return true; 0020 if ( a.Y() < b.Y() ) return true; 0021 if ( a.Z() < b.Z() ) return true; 0022 return false; 0023 } 0024 }} 0025 0026 template struct std::less<ROOT::Math::XYZVector>; 0027 0028 // ============================================================================ 0029 namespace dd4hep { 0030 namespace Parsers { 0031 0032 // ========================================================================== 0033 /* parse 3D-vector 0034 * @param result (output) the parsed vector 0035 * @param input (input) the input string 0036 * @return status code 0037 * @author Vanya BELYAEV Ivan.Belyaev@nikhef.nl 0038 * @date 2009-09-05 0039 */ 0040 template <> int parse(ROOT::Math::XYZVector& result,const std::string& input) { 0041 ROOT::Math::XYZPoint point; 0042 int sc = parse(point,input); 0043 if ( 0 == sc ){ return sc; } // RETURN 0044 result = point; 0045 return 1; 0046 } 0047 0048 // ========================================================================== 0049 /* parse the vector of vectors 0050 * @param resut (OUTPUT) the parser vector 0051 * @param input (INPIUT) the string to be parsed 0052 * @author Vanya BELYAEV Ivan.Belyaev@nikhef.nl 0053 * @date 2009-09-05 0054 */ 0055 // ========================================================================== 0056 IMPLEMENT_STL_PARSERS(ROOT::Math::XYZVector) 0057 IMPLEMENT_MAPPED_PARSERS(pair,ROOT::Math::XYZVector) 0058 } 0059 } 0060 #endif
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |