Logo ROOT   6.16/01
Reference Guide
TGeoMediumEditor.h
Go to the documentation of this file.
1// @(#):$Id$
2// Author: M.Gheata
3
4/*************************************************************************
5 * Copyright (C) 1995-2002, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_TGeoMediumEditor
13#define ROOT_TGeoMediumEditor
14
15#include "TGWidget.h"
16#include "TGeoGedFrame.h"
17
18class TGeoMedium;
19class TGeoMaterial;
20class TGeoTabManager;
21class TGTextEntry;
22class TGNumberEntry;
23class TGTab;
24class TGComboBox;
25class TGTextButton;
26class TGPictureButton;
27class TGCheckButton;
28class TGLabel;
29
31
32protected:
33
34 TGeoMedium *fMedium; // Medium object
35
36 Bool_t fIsEditable; // Flag that the medium can be changed
37 Bool_t fIsModified; // Modified flag
38 TGTextEntry *fMedName; // Medium name text entry
39 TGNumberEntry *fMedId; // Number entry for medium id
40// TGComboBox *fMatList; // Combo box for all materials
41 TGeoMaterial *fSelectedMaterial; // Selected material
42 TGLabel *fLSelMaterial; // Selected material label
43 TGPictureButton *fBSelMaterial; // Button for selecting a material
44 TGTextButton *fEditMaterial; // Check button for material editing
45 TGCheckButton *fMedSensitive; // Check button for sensitivity
46 TGComboBox *fMagfldOption; // Combo box with magnetic field options
47 TGNumberEntry *fMedFieldm; // Number entry for fieldm
48 TGNumberEntry *fMedTmaxfd; // Number entry for tmaxfd
49 TGNumberEntry *fMedStemax; // Number entry for stemax
50 TGNumberEntry *fMedDeemax; // Number entry for deemax
51 TGNumberEntry *fMedEpsil; // Number entry for epsil
52 TGNumberEntry *fMedStmin; // Number entry for stmin
53 TGTextButton *fApply; // Apply-Button to accept changes
54 TGTextButton *fUndo; // Undo-Button
55
56 virtual void ConnectSignals2Slots(); // Connect the signals to the slots
57
58public:
59 TGeoMediumEditor(const TGWindow *p = 0,
60 Int_t width = 140, Int_t height = 30,
61 UInt_t options = kChildFrame,
63 virtual ~TGeoMediumEditor();
64 virtual void SetModel(TObject *obj);
65
66 void DoEditMaterial();
67 void DoSelectMaterial();
68 void DoMedName();
69 void DoMedId();
70 void DoToggleSensitive();
71 void DoMagfldSelect(Int_t ientry);
72 void DoFieldm();
73 void DoTmaxfd();
74 void DoStemax();
75 void DoDeemax();
76 void DoEpsil();
77 void DoStmin();
78 void DoApply();
79 void DoUndo();
80
81 ClassDef(TGeoMediumEditor,0) // TGeoMedium editor
82};
83
84#endif
ULong_t Pixel_t
Definition: GuiTypes.h:39
int Int_t
Definition: RtypesCore.h:41
unsigned int UInt_t
Definition: RtypesCore.h:42
bool Bool_t
Definition: RtypesCore.h:59
#define ClassDef(name, id)
Definition: Rtypes.h:324
include TDocParser_001 C image html pict1_TDocParser_001 png width
Definition: TDocParser.cxx:121
@ kChildFrame
Definition: TGFrame.h:57
static Pixel_t GetDefaultFrameBackground()
Get default frame background.
Definition: TGFrame.cxx:665
Definition: TGTab.h:62
Common base class for geombuilder editors.
Definition: TGeoGedFrame.h:13
Base class describing materials.
Definition: TGeoMaterial.h:31
Editor class for TGeo tracking media.
TGComboBox * fMagfldOption
TGNumberEntry * fMedFieldm
void DoMedName()
Slot for medium name.
void DoUndo()
Slot for undoing last operation.
void DoEditMaterial()
Edit selected material.
TGTextButton * fUndo
TGNumberEntry * fMedStemax
void DoStmin()
Slot for min. step.
void DoMedId()
Slot for medium id.
TGTextButton * fApply
TGLabel * fLSelMaterial
virtual void SetModel(TObject *obj)
Connect to the selected object.
TGeoMediumEditor(const TGWindow *p=0, Int_t width=140, Int_t height=30, UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground())
Constructor for medium editor.
void DoEpsil()
Slot for tracking precision.
void DoMagfldSelect(Int_t ientry)
Slot for mag. field.
void DoToggleSensitive()
Slot for sensitivity.
void DoApply()
Slot for applying modifications.
TGPictureButton * fBSelMaterial
TGeoMedium * fMedium
virtual ~TGeoMediumEditor()
Destructor.
TGNumberEntry * fMedDeemax
void DoSelectMaterial()
Select the material component.
void DoTmaxfd()
Slot for tmaxfd.
TGNumberEntry * fMedStmin
void DoStemax()
Slot for the max allowed step.
void DoDeemax()
Slot for the maximum allowed dedx.
void DoFieldm()
Slot for max field.
TGNumberEntry * fMedId
TGNumberEntry * fMedTmaxfd
TGeoMaterial * fSelectedMaterial
TGNumberEntry * fMedEpsil
virtual void ConnectSignals2Slots()
Connect signals to slots.
TGTextButton * fEditMaterial
TGTextEntry * fMedName
TGCheckButton * fMedSensitive
Media are used to store properties related to tracking and which are useful only when using geometry ...
Definition: TGeoMedium.h:24
Manager for all editor tabs.
Mother of all ROOT objects.
Definition: TObject.h:37