Class Reference for E1039 Core & Analysis Software
PHIODataNode.h
Go to the documentation of this file.
1 #ifndef PHIODATANODE_H__
2 #define PHIODATANODE_H__
3 
4 // Declaration of class PHIODataNode which can hold persistent data
5 // Author: Matthias Messer
6 
7 #include "PHDataNode.h"
8 #include "PHIOManager.h"
9 #include "PHNodeIOManager.h"
10 #include "PHTypedNodeIterator.h"
11 #include "phooldefs.h"
12 
13 #include <TObject.h>
14 
15 #include <string>
16 
17 template <typename T>
18 class PHIODataNode : public PHDataNode <T>
19 {
20  friend class PHNodeIOManager;
21 
22  public:
23  T* operator*() {return this->getData();}
24  PHIODataNode(T*, const std::string &);
25  PHIODataNode(T*, const std::string &, const std::string &);
26  virtual ~PHIODataNode() {}
28 
29  protected:
30  virtual bool write(PHIOManager *, const std::string& = "");
32 };
33 
34 template <class T>
35 PHIODataNode<T>::PHIODataNode(T* d, const std::string& name)
36  : PHDataNode<T>(d, name)
37 {
38  this->type = "PHIODataNode";
39  TObject *TO = static_cast<TObject *> (d);
40  this->objectclass = TO->GetName();
41 }
42 
43 template <class T>
44 PHIODataNode<T>::PHIODataNode(T* d, const std::string& name,
45  const std::string& objtype)
46  : PHDataNode<T>(d, name, objtype)
47 {
48  this->type = "PHIODataNode";
49  TObject *TO = static_cast<TObject *> (d);
50  this->objectclass = TO->GetName();
51 }
52 
53 template <class T>
54 bool
55 PHIODataNode<T>::write(PHIOManager* IOManager, const std::string& path)
56 {
57  if (this->persistent)
58  {
59  PHNodeIOManager *np = dynamic_cast<PHNodeIOManager*>(IOManager);
60  if (np)
61  {
62  std::string newPath = path + phooldefs::branchpathdelim + this->name;
63  bool bret = false;
64  if (dynamic_cast<TObject *> (this->data.data))
65  {
66  bret = np->write(&(this->data.tobj), newPath);
67  }
68  return bret;
69  }
70  }
71  return true;
72 }
73 
74 #endif /* __PHIODATANODE_H__ */
T * getData()
Definition: PHDataNode.h:21
T * operator*()
Definition: PHIODataNode.h:23
PHTypedNodeIterator< T > iterator
Definition: PHIODataNode.h:27
virtual bool write(PHIOManager *, const std::string &="")
Definition: PHIODataNode.h:55
virtual ~PHIODataNode()
Definition: PHIODataNode.h:26
virtual PHBoolean write(PHCompositeNode *)
std::string objectclass
Definition: PHNode.h:58
std::string type
Definition: PHNode.h:55
static const std::string branchpathdelim
Definition: phooldefs.h:8