Geant4 Cross Reference

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

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_booking
  5 #define tools_ntuple_booking
  6 
  7 // a little class to capture booking parameters
  8 // to create an ntuple.
  9 
 10 #include "cids"
 11 
 12 #include <ostream>
 13 #include "forit"
 14 
 15 namespace tools {
 16 
 17 class column_booking {
 18 public:
 19   column_booking(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_booking() {}
 25 public:
 26   column_booking(const column_booking& 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_booking& operator=(const column_booking& 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 cls_id() const {return m_cid;}
 41   void* user_obj() const {return m_user_obj;}
 42   void set_user_obj(void* a_obj) {m_user_obj = a_obj;}
 43 protected:
 44   std::string m_name;
 45   cid m_cid;
 46   void* m_user_obj;
 47 };
 48 
 49 class ntuple_booking {
 50 public:
 51   ntuple_booking(const std::string& a_name = "",const std::string& a_title = "")
 52   :m_name(a_name)
 53   ,m_title(a_title)
 54   {}
 55   virtual ~ntuple_booking(){}
 56 public:
 57   ntuple_booking(const ntuple_booking& a_from)
 58   :m_name(a_from.m_name)
 59   ,m_title(a_from.m_title)
 60   ,m_columns(a_from.m_columns)
 61   {}
 62   ntuple_booking& operator=(const ntuple_booking& a_from){
 63     m_name = a_from.m_name;
 64     m_title = a_from.m_title;
 65     m_columns = a_from.m_columns;
 66     return *this;
 67   }
 68 public:
 69   template <class T>
 70   void add_column(const std::string& a_name) {
 71     m_columns.push_back(column_booking(a_name,_cid(T()),0));
 72   }
 73   template <class T>
 74   void add_column(const std::string& a_name,T& a_user) {
 75     m_columns.push_back(column_booking(a_name,_cid(T()),(void*)&a_user));
 76   }
 77 
 78   template <class T>
 79   void add_column_vec(const std::string& a_name) {
 80     m_columns.push_back(column_booking(a_name,_cid_std_vector<T>(),0));
 81   }
 82   template <class T>
 83   void add_column_vec(const std::string& a_name,std::vector<T>& a_user_vec) {
 84     m_columns.push_back(column_booking(a_name,_cid_std_vector<T>(),(void*)&a_user_vec));
 85   }
 86   template <class T>
 87   void add_column(const std::string& a_name,std::vector<T>& a_user_vec) {
 88     m_columns.push_back(column_booking(a_name,_cid_std_vector<T>(),(void*)&a_user_vec));
 89   }
 90 
 91   const std::string& name() const {return m_name;}
 92   const std::string& title() const {return m_title;}
 93   const std::vector<column_booking>& columns() const {return m_columns;}
 94   std::vector<column_booking>& columns() {return m_columns;}
 95 
 96   void set_name(const std::string& a_s) {m_name = a_s;}
 97   void set_title(const std::string& a_s) {m_title = a_s;}
 98 
 99   bool has_similar_layout(std::ostream& a_out,const ntuple_booking& a_nbk) {
100     if(m_columns.size()!=a_nbk.m_columns.size()) {
101       a_out << "tools::ntuple_booking::has_similar_layout :"
102             << " bookings have not the same number of columns."
103             << " (" << m_columns.size() << " != " << a_nbk.m_columns.size() << ")."
104             << std::endl;
105       return false;
106     }
107     std::vector<column_booking>::const_iterator ait = a_nbk.m_columns.begin();
108     tools_vforit(tools::column_booking,m_columns,it) {
109       if((*it).name()!=(*ait).name()) {
110         a_out << "tools::ntuple_booking::has_similar_layout :"
111               << " columns don't have same name."
112               << " (" << (*it).name() << " != " << (*ait).name() << ")."
113               << std::endl;
114         return false;
115       }
116       if((*it).cls_id()!=(*ait).cls_id()) {
117         a_out << "tools::ntuple_booking::has_similar_layout :"
118               << " columns don't have same class id."
119               << " (" << (*it).cls_id() << " != " << (*ait).cls_id() << ")."
120               << std::endl;
121         return false;
122       }
123 
124       ait++;
125     }
126     return true;
127   }
128 
129 protected:
130   std::string m_name;
131   std::string m_title;
132   std::vector<column_booking> m_columns;
133 };
134 
135 }
136 
137 #endif