Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/externals/g4tools/include/tools/ntuple_binding

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 ]

  1 // Copyright (C) 2010, Guy Barrand. All rights reserved.
  2 // See the file tools.license for terms.
  3 
  4 #ifndef tools_ntuple_binding
  5 #define tools_ntuple_binding
  6 
  7 // a little class to capture column binding parameters
  8 // when reading an ntuple.
  9 
 10 #include <string>
 11 #include <vector>
 12 #include "forit"
 13 #include "cids"
 14 
 15 namespace tools {
 16 
 17 class column_binding {
 18 public:
 19   column_binding(const std::string& a_name,cid a_cid,void* a_user_obj)
 20   :m_name(a_name)
 21   ,m_cid(a_cid)
 22   ,m_user_obj(a_user_obj) //WARNING : not owner.
 23   {}
 24   virtual ~column_binding() {}
 25 public:
 26   column_binding(const column_binding& a_from)
 27   :m_name(a_from.m_name)
 28   ,m_cid(a_from.m_cid)
 29   ,m_user_obj(a_from.m_user_obj)
 30   {}
 31   column_binding& operator=(const column_binding& a_from) {
 32     if(&a_from==this) return *this;
 33     m_name = a_from.m_name;
 34     m_cid = a_from.m_cid;
 35     m_user_obj = a_from.m_user_obj;
 36     return *this;
 37   }
 38 public:
 39   const std::string& name() const {return m_name;}
 40   cid get_cid() const {return m_cid;}
 41   void* user_obj() const {return m_user_obj;}
 42 protected:
 43   std::string m_name;
 44   cid m_cid;
 45   void* m_user_obj;
 46 };
 47 
 48 class ntuple_binding {
 49 public:
 50   ntuple_binding()
 51   {}
 52   virtual ~ntuple_binding(){}
 53 public:
 54   ntuple_binding(const ntuple_binding& a_from)
 55   :m_columns(a_from.m_columns)
 56   {}
 57   ntuple_binding& operator=(const ntuple_binding& a_from){
 58     m_columns = a_from.m_columns;
 59     return *this;
 60   }
 61 public:
 62   template <class T>
 63   void add_column(const std::string& a_name,T& a_user_var) {
 64     m_columns.push_back(column_binding(a_name,_cid(T()),(void*)&a_user_var));
 65   }
 66 
 67   template <class T>
 68   void add_column(const std::string& a_name,std::vector<T>& a_user_var) {
 69     m_columns.push_back(column_binding(a_name,_cid_std_vector<T>(),(void*)&a_user_var));
 70   }
 71 
 72   // to have consistent naming than in ntuple_booking :
 73   template <class T>
 74   void add_column_vec(const std::string& a_name,std::vector<T>& a_user_var) {
 75     m_columns.push_back(column_binding(a_name,_cid_std_vector<T>(),(void*)&a_user_var));
 76   }
 77 
 78   template <class T>
 79   void add_column_cid(const std::string& a_name,T& a_user_var) {
 80     m_columns.push_back(column_binding(a_name,T::id_class(),(void*)&a_user_var));
 81   }
 82 
 83   void add_column_no_var(const std::string& a_name) { //used in rcsv_ntuple.
 84     m_columns.push_back(column_binding(a_name,0,0));
 85   }
 86 
 87   //void add_column(const std::string& a_name,cid a_id,void* a_user_var) {
 88   //  m_columns.push_back(column_binding(a_name,a_id,a_user_var));
 89   //}
 90 
 91   const std::vector<column_binding>& columns() const {return m_columns;}
 92 
 93   bool find_user_obj(const std::string& a_name,cid& a_cid,void*& a_obj) const {
 94     tools_vforcit(column_binding,m_columns,it) {
 95       if((*it).name()==a_name) {
 96         a_cid = (*it).get_cid();
 97         a_obj = (*it).user_obj();
 98   return true;
 99       }
100     }
101     a_cid = 0;
102     a_obj = 0;
103     return false;
104   }
105 
106   template <class T>
107   T* find_variable(const std::string& a_name) const {
108     tools_vforcit(column_binding,m_columns,it) {
109       if((*it).name()==a_name) {
110         // we should check cid. If so, take care of T=aida::ntuple.
111         return (T*)((*it).user_obj());
112       }
113     }
114     return 0;
115   }
116 
117   template <class T>
118   std::vector<T>* find_vector_variable(const std::string& a_name) const {
119     tools_vforcit(column_binding,m_columns,it) {
120       if((*it).name()==a_name) {
121         if((*it).get_cid()!=_cid_std_vector<T>()) return 0;
122         return (std::vector<T>*)((*it).user_obj());
123       }
124     }
125     return 0;
126   }
127 protected:
128   std::vector<column_binding> m_columns;
129 };
130 
131 }
132 
133 #endif