source: trunk/source/physics_lists/builders/include/G4OpticalPhysicsMessenger.hh @ 1340

Last change on this file since 1340 was 1340, checked in by garnier, 14 years ago

update ti head

File size: 3.5 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
27#ifndef G4OpticalPhysicsMessenger_h
28#define G4OpticalPhysicsMessenger_h 1
29
30#include "globals.hh"
31
32#include "G4UImessenger.hh"
33
34class G4VProcess;
35class G4OpticalPhysics;
36
37class G4UIdirectory;
38class G4UIcmdWithABool;
39class G4UIcmdWithADouble;
40class G4UIcmdWithAString;
41class G4UIcmdWithAnInteger;
42
43class G4OpticalPhysicsMessenger: public G4UImessenger
44{
45
46  public:
47
48    G4OpticalPhysicsMessenger(G4OpticalPhysics*);
49    ~G4OpticalPhysicsMessenger();
50
51    // methods
52    void SetNewValue(G4UIcommand*, G4String);
53   
54private:
55
56  /// Not implemented
57  G4OpticalPhysicsMessenger();
58  /// Not implemented
59  G4OpticalPhysicsMessenger(const G4OpticalPhysicsMessenger& right);
60  /// Not implemented
61  G4OpticalPhysicsMessenger& operator=(const G4OpticalPhysicsMessenger& right);
62
63  // data members
64
65  /// associated clas
66  G4OpticalPhysics*     fOpticalPhysics;
67
68  /// command directory
69  G4UIdirectory*         fDir;
70
71  /// selected optical process
72  G4VProcess*            fSelectedProcess;
73
74  /// selectOpProcess command
75  G4UIcmdWithAString*    fSelectOpProcessCmd;
76
77  /// setCerenkovActivation command
78  G4UIcmdWithABool*      fSetOpProcessActivationCmd;
79
80  /// setCerenkovVerbose command
81  G4UIcmdWithAnInteger*  fSetOpProcessVerboseCmd;
82
83  /// setCerenkovMaxPhotons command
84  G4UIcmdWithAnInteger*  fSetCerenkovMaxPhotonsCmd;
85
86  /// setCerenkovMaxBetaChange command
87  G4UIcmdWithADouble*    fSetCerenkovMaxBetaChangeCmd;
88
89  /// setScintillationYieldFactor command
90  G4UIcmdWithADouble*    fSetScintillationYieldFactorCmd;
91
92  /// setScintillationByParticleType command
93  G4UIcmdWithABool*      fSetScintillationByParticleTypeCmd;
94
95  /// setOpticalSurfaceModel command
96  G4UIcmdWithAString*    fSetOpticalSurfaceModelCmd;
97
98  /// setWLSTimeProfile command
99  G4UIcmdWithAString*    fSetWLSTimeProfileCmd;
100
101  /// setTrackSecondariesFirst command
102  G4UIcmdWithABool*      fSetTrackSecondariesFirstCmd;
103
104};
105
106#endif
Note: See TracBrowser for help on using the repository browser.