Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4XmlRNtupleManager.hh
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 // $Id$
27 
28 // Manager class for Xml read ntuples.
29 // It implements functions specific to Xml read ntuples.
30 //
31 // Author: Ivana Hrivnacova, 25/07/2014 (ivana@ipno.in2p3.fr)
32 
33 #ifndef G4XmlRNtupleManager_h
34 #define G4XmlRNtupleManager_h 1
35 
36 #include "G4VRNtupleManager.hh"
37 #include "globals.hh"
38 
39 #include "tools/raxml"
40 
41 #include <vector>
42 
44 
46 {
47  friend class G4XmlAnalysisReader;
48 
49  protected:
51  virtual ~G4XmlRNtupleManager();
52 
53  // Methods to manipulate ntuples
54  G4bool IsEmpty() const;
55  G4bool Reset();
56 
57  // Access methods
58  tools::aida::ntuple* GetNtuple() const;
59  tools::aida::ntuple* GetNtuple(G4int ntupleId) const;
60 
61  // Functions independent from the output type
62  //
63  // Methods to read ntuple from a file
64  G4int SetNtuple(G4XmlRNtupleDescription* rntupleDescription);
65  // Methods for ntuple with id = FirstNtupleId
66  virtual G4bool SetNtupleIColumn(const G4String& columnName,
67  G4int& value);
68  virtual G4bool SetNtupleFColumn(const G4String& columnName,
69  G4float& value);
70  virtual G4bool SetNtupleDColumn(const G4String& columnName,
71  G4double& value);
72  virtual G4bool SetNtupleSColumn(const G4String& columnName,
73  G4String& value);
74  // Bind the ntuple columns of vector type
75  virtual G4bool SetNtupleIColumn(const G4String& columnName,
76  std::vector<G4int>& vector);
77  virtual G4bool SetNtupleFColumn(const G4String& columnName,
78  std::vector<G4float>& vector);
79  virtual G4bool SetNtupleDColumn(const G4String& columnName,
80  std::vector<G4double>& vector);
81  // Methods for ntuple with id > FirstNtupleId
82  virtual G4bool SetNtupleIColumn(G4int ntupleId,
83  const G4String& columnName, G4int& value);
84  virtual G4bool SetNtupleFColumn(G4int ntupleId,
85  const G4String& columnName, G4float& value);
86  virtual G4bool SetNtupleDColumn(G4int ntupleId,
87  const G4String& columnName, G4double& value);
88  virtual G4bool SetNtupleSColumn(G4int ntupleId,
89  const G4String& columnName, G4String& value);
90  // Bind the ntuple columns of vector type
91  virtual G4bool SetNtupleIColumn(G4int ntupleId, const G4String& columnName,
92  std::vector<G4int>& vector);
93  virtual G4bool SetNtupleFColumn(G4int ntupleId, const G4String& columnName,
94  std::vector<G4float>& vector);
95  virtual G4bool SetNtupleDColumn(G4int ntupleId, const G4String& columnName,
96  std::vector<G4double>& vector);
97  virtual G4bool GetNtupleRow();
98  virtual G4bool GetNtupleRow(G4int ntupleId) ;
99 
100  // Access methods
101  virtual G4int GetNofNtuples() const;
102 
103  private:
104  // methods
105  G4XmlRNtupleDescription* GetNtupleInFunction(G4int id,
106  G4String function,
107  G4bool warn = true) const;
108 
109  // data members
110  std::vector<G4XmlRNtupleDescription*> fNtupleVector;
111 };
112 
113 // inline functions
114 
116 { return fNtupleVector.size(); }
117 
118 #endif
119 
virtual G4bool SetNtupleDColumn(const G4String &columnName, G4double &value)
float G4float
Definition: G4Types.hh:77
int G4int
Definition: G4Types.hh:78
const XML_Char int const XML_Char * value
Definition: expat.h:331
virtual G4bool SetNtupleIColumn(const G4String &columnName, G4int &value)
bool G4bool
Definition: G4Types.hh:79
virtual G4bool SetNtupleSColumn(const G4String &columnName, G4String &value)
tools::aida::ntuple * GetNtuple() const
virtual G4bool SetNtupleFColumn(const G4String &columnName, G4float &value)
G4XmlRNtupleManager(const G4AnalysisManagerState &state)
virtual G4int GetNofNtuples() const
double G4double
Definition: G4Types.hh:76
G4int SetNtuple(G4XmlRNtupleDescription *rntupleDescription)
virtual G4bool GetNtupleRow()