Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/externals/g4tools/include/tools/histo/axes

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

Diff markup

Differences between /externals/g4tools/include/tools/histo/axes (Version 11.3.0) and /externals/g4tools/include/tools/histo/axes (Version 11.1.3)


  1 // Copyright (C) 2010, Guy Barrand. All rights      1 // Copyright (C) 2010, Guy Barrand. All rights reserved.
  2 // See the file tools.license for terms.            2 // See the file tools.license for terms.
  3                                                     3 
  4 #ifndef tools_histo_axes                            4 #ifndef tools_histo_axes
  5 #define tools_histo_axes                            5 #define tools_histo_axes
  6                                                     6 
  7 #include "axis"                                     7 #include "axis"
  8                                                     8 
  9 namespace tools {                                   9 namespace tools {
 10 namespace histo {                                  10 namespace histo {
 11                                                    11 
 12 //TC is for a coordinate.                          12 //TC is for a coordinate.
 13 //TO is for an offset used to identify a bin.      13 //TO is for an offset used to identify a bin.
 14                                                    14 
 15 template <class TC,class TO>                       15 template <class TC,class TO>
 16 inline bool is_out(const std::vector< axis<TC,     16 inline bool is_out(const std::vector< axis<TC,TO> >& a_axes,TO a_offset) {
 17   TO offset = a_offset;                            17   TO offset = a_offset;
 18   int index;                                       18   int index;
 19   typename std::vector< axis<TC,TO> >::size_ty     19   typename std::vector< axis<TC,TO> >::size_type dimension = a_axes.size();
 20   for(int iaxis=int(dimension)-1;iaxis>=0;iaxi     20   for(int iaxis=int(dimension)-1;iaxis>=0;iaxis--) {
 21     index = int(offset/a_axes[iaxis].m_offset)     21     index = int(offset/a_axes[iaxis].m_offset);
 22     if(index==0) return true;                      22     if(index==0) return true;
 23     if(index==(int(a_axes[iaxis].m_number_of_b     23     if(index==(int(a_axes[iaxis].m_number_of_bins)+1)) return true;
 24     offset -= index * a_axes[iaxis].m_offset;      24     offset -= index * a_axes[iaxis].m_offset;
 25   }                                                25   }
 26   return false;                                    26   return false;
 27 }                                                  27 }
 28                                                    28 
 29 template <class TC,class TO>                       29 template <class TC,class TO>
 30 inline void get_indices(const std::vector< axi     30 inline void get_indices(const std::vector< axis<TC,TO> >& a_axes,TO a_offset,std::vector<int>& a_is) {
 31   TO offset = a_offset;                            31   TO offset = a_offset;
 32   typename std::vector< axis<TC,TO> >::size_ty     32   typename std::vector< axis<TC,TO> >::size_type dimension = a_axes.size();
 33  {for(int iaxis=int(dimension)-1;iaxis>=0;iaxi     33  {for(int iaxis=int(dimension)-1;iaxis>=0;iaxis--) {
 34     a_is[iaxis] = int(offset/a_axes[iaxis].m_o     34     a_is[iaxis] = int(offset/a_axes[iaxis].m_offset);
 35     offset -= a_is[iaxis] * a_axes[iaxis].m_of     35     offset -= a_is[iaxis] * a_axes[iaxis].m_offset;
 36   }}                                               36   }}
 37   typedef unsigned int dim_t;                      37   typedef unsigned int dim_t;
 38   for(dim_t iaxis=0;iaxis<dimension;iaxis++) {     38   for(dim_t iaxis=0;iaxis<dimension;iaxis++) {
 39     if(a_is[iaxis]==0) {                           39     if(a_is[iaxis]==0) {
 40       a_is[iaxis] = axis_UNDERFLOW_BIN;            40       a_is[iaxis] = axis_UNDERFLOW_BIN;
 41     } else if(a_is[iaxis]==int(a_axes[iaxis].m     41     } else if(a_is[iaxis]==int(a_axes[iaxis].m_number_of_bins)+1) {
 42       a_is[iaxis] = axis_OVERFLOW_BIN;             42       a_is[iaxis] = axis_OVERFLOW_BIN;
 43     } else {                                       43     } else {
 44       a_is[iaxis]--;                               44       a_is[iaxis]--;
 45     }                                              45     }
 46   }                                                46   }
 47 }                                                  47 }
 48                                                    48 
 49 template <class TC,class TO>                       49 template <class TC,class TO>
 50 inline bool get_offset(const std::vector< axis     50 inline bool get_offset(const std::vector< axis<TC,TO> >& a_axes,const std::vector<int>& a_is,TO& a_offset) {
 51   // a_is[iaxis] is given in in-range indexing     51   // a_is[iaxis] is given in in-range indexing :
 52   //  - [0,n[iaxis]-1] for in-range bins           52   //  - [0,n[iaxis]-1] for in-range bins
 53   //  - UNDERFLOW_BIN for the iaxis underflow      53   //  - UNDERFLOW_BIN for the iaxis underflow bin
 54   //  - OVERFLOW_BIN for the iaxis overflow bi     54   //  - OVERFLOW_BIN for the iaxis overflow bin
 55   a_offset = 0;                                    55   a_offset = 0;
 56   if(a_axes.empty()) return false;                 56   if(a_axes.empty()) return false;
 57   typename std::vector< axis<TC,TO> >::size_ty     57   typename std::vector< axis<TC,TO> >::size_type dimension = a_axes.size();
 58   typename axis<TC,TO>::bn_t ibin;                 58   typename axis<TC,TO>::bn_t ibin;
 59   typedef unsigned int dim_t;                      59   typedef unsigned int dim_t;
 60   for(dim_t iaxis=0;iaxis<dimension;iaxis++) {     60   for(dim_t iaxis=0;iaxis<dimension;iaxis++) {
 61     if(!a_axes[iaxis].in_range_to_absolute_ind     61     if(!a_axes[iaxis].in_range_to_absolute_index(a_is[iaxis],ibin)) {
 62       a_offset = 0;                                62       a_offset = 0;
 63       return false;                                63       return false;
 64     }                                              64     }
 65     a_offset += ibin * a_axes[iaxis].m_offset;     65     a_offset += ibin * a_axes[iaxis].m_offset;
 66   }                                                66   }
 67   return true;                                     67   return true;
 68 }                                                  68 }
 69                                                    69 
 70 }}                                                 70 }}
 71                                                    71 
 72 #endif                                             72 #endif
 73                                                    73 
 74                                                    74 
 75                                                    75 
 76                                                    76