source: trunk/source/persistency/mctruth/include/G4PersistencyCenterMessenger.hh @ 1202

Last change on this file since 1202 was 818, checked in by garnier, 16 years ago

import all except CVS

File size: 3.4 KB
Line 
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// File: G4PersistencyCenterMessenger.hh
27//
28// History:
29//   01.07.18  Youhei Morita  Initial creation (with "fadsclass")
30
31#ifndef PERSISTENCY_CENTER_MESSENGER_HH
32#define PERSISTENCY_CENTER_MESSENGER_HH 1
33
34#include "G4UIcommand.hh"
35#include "G4UIdirectory.hh"
36#include "G4UIcmdWithAnInteger.hh"
37#include "G4UIcmdWithAString.hh"
38#include "G4UIcmdWithoutParameter.hh"
39#include "G4PersistencyCenter.hh"
40
41// Class inherited:
42#include "G4UImessenger.hh"
43
44// Class Description:
45//   User interface messenger class to interface G4PersistencyCenter
46
47class G4PersistencyCenterMessenger
48 : public G4UImessenger
49{
50    public: // With description
51      G4PersistencyCenterMessenger(G4PersistencyCenter* p);
52      // Constructor
53
54      ~G4PersistencyCenterMessenger();
55      // Destructor
56
57    public: // With description
58      void SetNewValue(G4UIcommand* command, G4String newValues);
59      // User interface for setting a new value
60
61      G4String GetCurrentValue(G4UIcommand* command);
62      // User interface for getting a value
63
64    private:
65      std::string PopWord(std::string text, int n, std::string delim);
66      // Parse text and returns the n-th words separated by delim
67
68    private:
69      G4PersistencyCenter*    pc;
70      G4UIdirectory*        directory, *subdir1, *subdir2,
71                            *subdir3, *subdir4, *subdir5;
72      G4UIcmdWithAnInteger* verboseCmd;
73      G4UIcmdWithAString*   select;
74      G4UIcmdWithAString*   regHitIO;
75      std::vector<std::string>         wrObj;
76      std::vector<std::string>         rdObj;
77      std::vector<G4UIcmdWithAString*> storeObj;
78      std::vector<G4UIcmdWithAString*> setWrFile;
79      std::vector<G4UIcmdWithAString*> setRdFile;
80      G4UIcmdWithoutParameter*         printAll;
81
82}; // End of class G4PersistencyCenterMessenger
83
84#endif
85
Note: See TracBrowser for help on using the repository browser.