ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Fun4AllBase.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file Fun4AllBase.cc
1 #include "Fun4AllBase.h"
2 
3 #include <iostream>
4 
5 using namespace std;
6 
8  : m_ThisName(name)
9  , m_Verbosity(VERBOSITY_QUIET)
10 {
11  return;
12 }
13 
15 {
17  {
18  cout << "Deleting " << m_ThisName << 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 }