Class Reference for E1039 Core & Analysis Software
PHObject.cc
Go to the documentation of this file.
1 #include "PHObject.h"
2 #include <cstdlib>
3 #include <iostream>
4 #include "phool.h"
5 
7  : split(99)
8  , bufSize(32000)
9 {
10  return;
11 }
12 
13 PHObject*
15 {
16  std::cout << PHWHERE << " clone() not implemented by daugther class"
17  << std::endl;
18  return 0;
19 }
20 
21 void PHObject::identify(std::ostream& out) const
22 {
23  out << "identify yourself: I am a PHObject object" << std::endl;
24 }
25 
27 {
28  // This is bad, previous events are not cleared
29  std::cout << PHWHERE
30  << " Reset() not implemented for " << this->GetName()
31  << " PREVIOUS EVENT IS NOT CLEARED"
32  << std::endl;
33  std::cout << "You most probably miss a library, if so there are one or more messages at startup like:"
34  << std::endl
35  << std::endl;
36  std::cout << "Warning in <TClass::TClass>: no dictionary for class XXX is available"
37  << std::endl
38  << std::endl;
39  std::cout << "load the libraries which contain these classes and try again"
40  << std::endl;
41  exit(1);
42 }
43 
44 int PHObject::isValid() const
45 {
46  // give warning if this method is not implemented
47  std::cout << PHWHERE
48  << " isValid() not implemented by daughter class"
49  << std::endl;
50  return 0;
51 }
52 
53 int PHObject::isValid(const float) const
54 {
55  // give warning if this method is not implemented
56  std::cout << PHWHERE
57  << " isValid(const float f) not implemented by daughter class"
58  << std::endl;
59  return 0;
60 }
61 
62 int PHObject::isValid(const double) const
63 {
64  // give warning if this method is not implemented
65  std::cout << PHWHERE
66  << " isValid(const double) not implemented by daughter class"
67  << std::endl;
68  return 0;
69 }
70 
71 int PHObject::isValid(const int) const
72 {
73  // give warning if this method is not implemented
74  std::cout << PHWHERE
75  << " isValid(const int) not implemented by daughter class"
76  << std::endl;
77  return 0;
78 }
79 
80 int PHObject::isValid(const unsigned int) const
81 {
82  // give warning if this method is not implemented
83  std::cout << PHWHERE
84  << " isValid(const unsigned int) not implemented by daughter class"
85  << std::endl;
86  return 0;
87 }
88 
89 int PHObject::isImplemented(const float) const
90 {
91  // give warning if this method is not implemented
92  std::cout << PHWHERE
93  << " isImplemented(const float f) not implemented by daughter class"
94  << std::endl;
95  return 0;
96 }
97 
98 int PHObject::isImplemented(const double) const
99 {
100  // give warning if this method is not implemented
101  std::cout << PHWHERE
102  << " isImplemented(const double) not implemented by daughter class"
103  << std::endl;
104  return 0;
105 }
106 
107 int PHObject::isImplemented(const int) const
108 {
109  // give warning if this method is not implemented
110  std::cout << PHWHERE
111  << " isImplemented(const int) not implemented by daughter class"
112  << std::endl;
113  return 0;
114 }
115 
116 int PHObject::isImplemented(const unsigned int) const
117 {
118  // give warning if this method is not implemented
119  std::cout << PHWHERE
120  << " isImplemented(const unsigned int) not implemented by daughter class"
121  << std::endl;
122  return 0;
123 }
virtual void Reset()
Clear Event.
Definition: PHObject.cc:26
PHObject()
ctor
Definition: PHObject.cc:6
virtual int isImplemented(const float f) const
Definition: PHObject.cc:89
virtual void identify(std::ostream &os=std::cout) const
Definition: PHObject.cc:21
virtual PHObject * clone() const
Virtual copy constructor.
Definition: PHObject.cc:14
virtual int isValid() const
isValid returns non zero if object contains vailid data
Definition: PHObject.cc:44
#define PHWHERE
Definition: phool.h:23