Class Reference for E1039 Core & Analysis Software
Fun4AllBase.h
Go to the documentation of this file.
1 #ifndef __FUN4ALLBASE_H__
2 #define __FUN4ALLBASE_H__
3 
4 #include <string>
5 #include <climits> // std::numeric_limits
6 
13 {
14  public:
15 
16 
20  virtual ~Fun4AllBase();
21 
23  virtual const std::string Name() const {return ThisName;}
24 
26  virtual void Name(const std::string &name) {ThisName = name;}
27 
31  virtual void Print(const std::string &what = "ALL") const;
32 
34 
37 
40 
43 
46 
49 
50  // ... use your imagination ...
51 
53  VERBOSITY_MAX = INT_MAX - 10
54 
55  } ;
56 
58  virtual void Verbosity(const int ival) {verbosity = static_cast<enu_Verbosity>(ival);}
59 
61  virtual void Verbosity(enu_Verbosity ival) {verbosity = ival;}
62 
64  virtual int Verbosity() const {return verbosity;}
65 
66  protected:
67 
70  Fun4AllBase(const std::string &name = "NONAME");
71 
72  std::string ThisName;
73 
75  int verbosity;
76 };
77 
78 #endif /* __FUN4ALLBASE_H__ */
79 
virtual void Verbosity(const int ival)
Sets the verbosity of this module (0 by default=quiet).
Definition: Fun4AllBase.h:58
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_QUIET
Quiet mode. Only output critical messages. Intended for batch production mode.
Definition: Fun4AllBase.h:36
@ VERBOSITY_MAX
Show all messages. Useful for step-by-step debugging.
Definition: Fun4AllBase.h:53
@ VERBOSITY_A_LOT
Output a lot of messages.
Definition: Fun4AllBase.h:48
@ VERBOSITY_EVEN_MORE
Output even more messages.
Definition: Fun4AllBase.h:45
@ VERBOSITY_MORE
Output more messages.
Definition: Fun4AllBase.h:42
@ VERBOSITY_SOME
Output some useful messages during manual command line running.
Definition: Fun4AllBase.h:39
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
std::string ThisName
Definition: Fun4AllBase.h:72
virtual void Verbosity(enu_Verbosity ival)
Sets the verbosity of this module (0 by default=quiet).
Definition: Fun4AllBase.h:61
virtual void Name(const std::string &name)
Sets the name of this module.
Definition: Fun4AllBase.h:26
virtual ~Fun4AllBase()
Definition: Fun4AllBase.cc:14