Class Reference for E1039 Core & Analysis Software
PHMessage.cc
Go to the documentation of this file.
1 #include "phool.h"
2 
3 #include <iostream>
4 #include <string>
5 
6 using namespace std;
7 
8 void PHMessage(const std::string& functionName, int messageType, const std::string& message)
9 {
10  switch (messageType) {
11  case (PHError):
12  cerr << functionName << endl;
13  cerr << "\tERROR" << endl;
14  cerr << "\t" << message << endl;
15  break;
16  case(PHWarning):
17  cout << functionName << endl;
18  cout << "\tWARNING" << endl;
19  cout << "\t" << message << endl;
20  break;
21  case(PHHullo):
22  cout << functionName << endl;
23  cout << "\tHULLO HULLO HULLO" << endl;
24  cout << "\t" << message << endl;
25  break;
26  }
27 }
28 
void PHMessage(const std::string &functionName, int messageType, const std::string &message)
Definition: PHMessage.cc:8
@ PHError
Definition: phool.h:14
@ PHHullo
Definition: phool.h:14
@ PHWarning
Definition: phool.h:14