BDSIM
BDSIM is a Geant4 extension toolkit for simulation of particle transport in accelerator beamlines.
BDSBeamPipeFactoryCircularVacuum.hh
1/*
2Beam Delivery Simulation (BDSIM) Copyright (C) Royal Holloway,
3University of London 2001 - 2022.
4
5This file is part of BDSIM.
6
7BDSIM is free software: you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published
9by the Free Software Foundation version 3 of the License.
10
11BDSIM is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with BDSIM. If not, see <http://www.gnu.org/licenses/>.
18*/
19#ifndef BDSBEAMPIPEFACTORYCIRCULARVACUUM_H
20#define BDSBEAMPIPEFACTORYCIRCULARVACUUM_H
21
22#include "BDSBeamPipeFactoryBase.hh"
23#include "BDSBeamPipe.hh"
24
34{
35public:
38
39 virtual BDSBeamPipe* CreateBeamPipe(const G4String& nameIn,
40 G4double lengthIn,
41 G4double aper1 = 0,
42 G4double aper2 = 0,
43 G4double aper3 = 0,
44 G4double aper4 = 0,
45 G4Material* vacuumMaterialIn = nullptr,
46 G4double beamPipeThicknessIn = 0,
47 G4Material* beamPipeMaterialIn = nullptr,
48 const G4String& pointsFileIn = "",
49 const G4String& pointsUnitIn = "");
50
51 virtual BDSBeamPipe* CreateBeamPipe(const G4String& nameIn,
52 G4double lengthIn,
53 const G4ThreeVector& inputFaceNormalIn,
54 const G4ThreeVector& outputFaceNormalIn,
55 G4double aper1 = 0,
56 G4double aper2 = 0,
57 G4double aper3 = 0,
58 G4double aper4 = 0,
59 G4Material* vacuumMaterialIn = nullptr,
60 G4double beamPipeThicknessIn = 0,
61 G4Material* beamPipeMaterialIn = nullptr,
62 const G4String& pointsFileIn = "",
63 const G4String& pointsUnitIn = "");
64
65private:
68 BDSBeamPipe* CommonFinalConstruction(const G4String& nameIn,
69 G4Material* vacuumMaterialIn,
70 G4double lengthIn,
71 G4double containerRadiusIn);
72};
73
74#endif
Abstract base class for beampipe factory classes.
Factory for vacuum-only circular volumes.
virtual BDSBeamPipe * CreateBeamPipe(const G4String &nameIn, G4double lengthIn, G4double aper1=0, G4double aper2=0, G4double aper3=0, G4double aper4=0, G4Material *vacuumMaterialIn=nullptr, G4double beamPipeThicknessIn=0, G4Material *beamPipeMaterialIn=nullptr, const G4String &pointsFileIn="", const G4String &pointsUnitIn="")
create a flat ended beampipe
BDSBeamPipe * CommonFinalConstruction(const G4String &nameIn, G4Material *vacuumMaterialIn, G4double lengthIn, G4double containerRadiusIn)
A holder class for a piece of beam pipe geometry.
Definition: BDSBeamPipe.hh:45