BDSIM
BDSIM is a Geant4 extension toolkit for simulation of particle transport in accelerator beamlines.
BDSInterpolatorType.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 BDSINTERPOLATORTYPE_H
20#define BDSINTERPOLATORTYPE_H
21
22#include "BDSTypeSafeEnum.hh"
23
24#include "globals.hh" // geant4 types / globals
25
35{
36 enum type
37 {
38 none,
39 nearestauto, linearauto, linearmagauto, cubicauto,
40 nearest1d, linear1d, linearmag1d, cubic1d,
41 nearest2d, linear2d, linearmag2d, cubic2d,
42 nearest3d, linear3d, linearmag3d, cubic3d,
43 nearest4d, linear4d, linearmag4d, cubic4d
44 };
45};
46
48
49namespace BDS
50{
52 BDSInterpolatorType DetermineInterpolatorType(G4String interpolatorType);
53
56
59
63 BDSInterpolatorType autoType);
64}
65
66#endif
Return either G4Tubs or G4CutTubs depending on flat face.
BDSInterpolatorType InterpolatorTypeSpecificFromAuto(G4int nDimension, BDSInterpolatorType autoType)
G4bool InterpolatorTypeIsAuto(BDSInterpolatorType typeIn)
Return true if the type is one containing 'auto'.
BDSInterpolatorType DetermineInterpolatorType(G4String interpolatorType)
Function that determines enum from string (case-insensitive).
G4int NDimensionsOfInterpolatorType(const BDSInterpolatorType &it)
Report the number of dimensions for that interpolator type.
Type definition for interpolator.