BDSIM
BDSIM is a Geant4 extension toolkit for simulation of particle transport in accelerator beamlines.
BDSBeamPipeFactoryRectangular.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 BDSBEAMPIPEFACTORYRECTANGULAR_H
20#define BDSBEAMPIPEFACTORYRECTANGULAR_H
21
22#include "BDSBeamPipeFactoryBase.hh"
23#include "BDSBeamPipe.hh"
24
32{
33public:
36
37 virtual BDSBeamPipe* CreateBeamPipe(const G4String& nameIn,
38 G4double lengthIn,
39 G4double aper1 = 0,
40 G4double aper2 = 0,
41 G4double aper3 = 0,
42 G4double aper4 = 0,
43 G4Material* vacuumMaterialIn = nullptr,
44 G4double beamPipeThicknessIn = 0,
45 G4Material* beamPipeMaterialIn = nullptr,
46 const G4String& pointsFileIn = "",
47 const G4String& pointsUnitIn = "");
48
49 virtual BDSBeamPipe* CreateBeamPipe(const G4String& nameIn,
50 G4double lengthIn,
51 const G4ThreeVector& inputFaceNormalIn,
52 const G4ThreeVector& outputFaceNormalIn,
53 G4double aper1 = 0,
54 G4double aper2 = 0,
55 G4double aper3 = 0,
56 G4double aper4 = 0,
57 G4Material* vacuumMaterialIn = nullptr,
58 G4double beamPipeThicknessIn = 0,
59 G4Material* beamPipeMaterialIn = nullptr,
60 const G4String& pointsFileIn = "",
61 const G4String& pointsUnitIn = "");
62
63private:
66 BDSBeamPipe* CommonFinalConstruction(const G4String& nameIn,
67 G4Material* vacuumMaterialIn,
68 G4Material* beamPipeMaterialIn,
69 G4double lengthIn,
70 G4double containerHalfWidthX,
71 G4double containerHalfWidthY);
72
75 void CreateGeneralAngledSolids(const G4String& nameIn,
76 G4double lengthIn,
77 G4double aper1In,
78 G4double aper2In,
79 G4double beamPipeThicknessIn,
80 const G4ThreeVector& inputfaceIn,
81 const G4ThreeVector& outputfaceIn,
82 G4double& containerHalfWidthX,
83 G4double& containerHalfWidthY);
84};
85
86#endif
Abstract base class for beampipe factory classes.
Factory for rectangular beam pipes.
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
void CreateGeneralAngledSolids(const G4String &nameIn, G4double lengthIn, G4double aper1In, G4double aper2In, G4double beamPipeThicknessIn, const G4ThreeVector &inputfaceIn, const G4ThreeVector &outputfaceIn, G4double &containerHalfWidthX, G4double &containerHalfWidthY)
BDSBeamPipe * CommonFinalConstruction(const G4String &nameIn, G4Material *vacuumMaterialIn, G4Material *beamPipeMaterialIn, G4double lengthIn, G4double containerHalfWidthX, G4double containerHalfWidthY)
A holder class for a piece of beam pipe geometry.
Definition: BDSBeamPipe.hh:45