-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathLaBr_TUD.hh
40 lines (31 loc) · 1.14 KB
/
LaBr_TUD.hh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
utr - Geant4 simulation of the UTR at HIGS
Copyright (C) 2017 the developing team (see README.md)
This file is part of utr.
utr is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
utr is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with utr. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include "G4LogicalVolume.hh"
class LaBr_TUD {
public:
LaBr_TUD(G4String Detector_Name);
~LaBr_TUD(){};
G4LogicalVolume *Get_Logical() { return LaBr_TUD_Logical; }
G4double Get_Radius() { return Radius; }
G4double Get_Length() { return Length; }
G4double Get_Front_Radius() { return Front_Radius; };
private:
G4double Length;
G4double Radius;
G4double Front_Radius;
G4LogicalVolume *LaBr_TUD_Logical;
};