Warning, /include/Geant4/tools/mnmx is written in an unsupported language. File is not indexed.
0001 // Copyright (C) 2010, Guy Barrand. All rights reserved.
0002 // See the file tools.license for terms.
0003
0004 #ifndef tools_mnmx
0005 #define tools_mnmx
0006
0007 namespace tools {
0008
0009 // long name :
0010 template <class T>
0011 inline T min_of(const T& a,const T& b) {return (a<b?a:b);}
0012
0013 template <class T>
0014 inline T max_of(const T& a,const T& b) {return (a>b?a:b);}
0015
0016 }
0017
0018 #endif