Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
G4ZMQServer.hh
이 파일의 문서화 페이지로 가기
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 //
27 // $Id: G4RunManager.hh 95232 2016-02-01 14:31:22Z gcosmo $
28 //
29 //
30 #ifndef G4ZMQ_SERVER_H_
31 #define G4ZMQ_SERVER_H_
32 
33 #include "G4VBasicShell.hh"
34 
35 class G4UItcsh;
36 
37 class G4ZMQServer : public G4VBasicShell {
38 public:
39  G4ZMQServer();
40  ~G4ZMQServer();
41 
42  void SetEndpoint(const G4String& endpoint);
43  G4String GetEndpoint() const;
44 
45  void SetDebug(G4bool flag);
46 
47  virtual G4UIsession* SessionStart();
48  virtual void PauseSessionStart(const G4String& message);
49 
50  virtual G4int ReceiveG4cout(const G4String& coutString);
51  virtual G4int ReceiveG4cerr(const G4String& cerrString);
52 
53 private:
57 
58  G4String GetCommand(const G4String& input);
59 
60  virtual void ExecuteCommand(const G4String& command);
61  virtual G4bool GetHelpChoice(G4int& );
62  virtual void ExitHelp() const;
63 
64 };
65 
66 // ==========================================================================
67 inline void G4ZMQServer::SetEndpoint(const G4String& endpoint)
68 {
69  endpoint_ = endpoint;
70 }
71 
73 {
74  return endpoint_;
75 }
76 
77 inline void G4ZMQServer::SetDebug(G4bool flag)
78 {
79  qdebug_ = flag;
80 }
81 
82 #endif
virtual void ExecuteCommand(const G4String &command)
Definition: G4ZMQServer.cc:264
G4String endpoint_
Definition: G4ZMQServer.hh:55
G4String GetCommand(const G4String &input)
Definition: G4ZMQServer.cc:204
void SetDebug(G4bool flag)
Definition: G4ZMQServer.hh:77
void message(RunManager *runmanager)
Definition: ts_scorers.cc:72
virtual G4bool GetHelpChoice(G4int &)
Definition: G4ZMQServer.cc:306
virtual void ExitHelp() const
Definition: G4ZMQServer.cc:312
virtual void PauseSessionStart(const G4String &message)
Definition: G4ZMQServer.cc:175
void SetEndpoint(const G4String &endpoint)
Definition: G4ZMQServer.hh:67
virtual G4UIsession * SessionStart()
Definition: G4ZMQServer.cc:96
G4bool qdebug_
Definition: G4ZMQServer.hh:54
bool G4bool
Definition: G4Types.hh:79
int G4int
Definition: G4Types.hh:78
virtual G4int ReceiveG4cerr(const G4String &cerrString)
Definition: G4ZMQServer.cc:192
G4String GetEndpoint() const
Definition: G4ZMQServer.hh:72
G4UItcsh * shell_
Definition: G4ZMQServer.hh:56
virtual G4int ReceiveG4cout(const G4String &coutString)
Definition: G4ZMQServer.cc:180