BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Goofy.h
Go to the documentation of this file.
1#ifndef Goofy_H
2#define Goofy_H
3
4#include <string>
5#include <vector>
6
10
12
13class Goofy {
14public:
15 Goofy();
16 Goofy( int, char** );
17 ~Goofy();
18 static int Shell( std::string s );
19
20private:
21 RunMode rm;
22 std::string runmacro;
23 std::string initmacro;
24 std::vector<std::string> opts;
25 void Banner();
26 void SetJobOptions();
27 GoofyMessenger* theMessenger;
28 ProjectMessenger* theProject;
29 RandomCenterMessenger* theRandomCenter;
30};
31
32#endif
RunMode
Definition Goofy.h:11
@ Interactive
Definition Goofy.h:11
@ Batch
Definition Goofy.h:11
XmlRpcServer s
static int Shell(std::string s)
Definition Goofy.cpp:58
~Goofy()
Definition Goofy.cpp:52
Goofy()
Definition Goofy.cpp:11
Goofy(int, char **)