Class Reference for E1039 Core & Analysis Software
Fun4AllBase.cc
Go to the documentation of this file.
1 #include "Fun4AllBase.h"
2 
3 #include <iostream>
4 
5 using namespace std;
6 
7 Fun4AllBase::Fun4AllBase(const string &name):
8  ThisName(name),
9  verbosity(VERBOSITY_QUIET)
10 {
11  return;
12 }
13 
15 {
17  {
18  cout << "Deleting " << Name () << endl;
19  }
20  return;
21 }
22 
23 void Fun4AllBase::Print(const string& /*what*/) const
24 {
25  cout << Name() << " did not implement Print method" << endl;
26  return;
27 }
28 
int verbosity
The verbosity level. 0 means not verbose at all.
Definition: Fun4AllBase.h:75
virtual void Print(const std::string &what="ALL") const
Definition: Fun4AllBase.cc:23
virtual const std::string Name() const
Returns the name of this module.
Definition: Fun4AllBase.h:23
Fun4AllBase(const std::string &name="NONAME")
Definition: Fun4AllBase.cc:7
@ VERBOSITY_MORE
Output more messages.
Definition: Fun4AllBase.h:42
virtual ~Fun4AllBase()
Definition: Fun4AllBase.cc:14