|
||||
File indexing completed on 2024-04-06 12:28:46
0001 #ifndef TkDetLayers_DetGroupElementZLess_h 0002 #define TkDetLayers_DetGroupElementZLess_h 0003 0004 #pragma GCC visibility push(hidden) 0005 class DetGroupElementZLess { 0006 public: 0007 bool operator()(DetGroup a, DetGroup b) { 0008 return (std::abs(a.front().det()->position().z()) < std::abs(b.front().det()->position().z())); 0009 } 0010 }; 0011 0012 #pragma GCC visibility pop 0013 #endif
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |