OPAL (Object Oriented Parallel Accelerator Library)  2021.1.99
OPAL
Beam.h
Go to the documentation of this file.
1 //
2 // Class Beam
3 // The class for the OPAL BEAM command.
4 // A BEAM definition is used by most physics commands to define the
5 // particle charge and the reference momentum, together with some other data.
6 //
7 // Copyright (c) 200x - 2021, Paul Scherrer Institut, Villigen PSI, Switzerland
8 // All rights reserved
9 //
10 // This file is part of OPAL.
11 //
12 // OPAL is free software: you can redistribute it and/or modify
13 // it under the terms of the GNU General Public License as published by
14 // the Free Software Foundation, either version 3 of the License, or
15 // (at your option) any later version.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with OPAL. If not, see <https://www.gnu.org/licenses/>.
19 //
20 #ifndef OPAL_Beam_HH
21 #define OPAL_Beam_HH
22 
24 #include "Algorithms/PartData.h"
25 
26 #include <ostream>
27 #include <string>
28 
29 class Inform;
30 
31 
32 class Beam: public Definition {
33 
34 public:
35 
37  Beam();
38 
39  virtual ~Beam();
40 
42  // Can replace only by another BEAM.
43  virtual bool canReplaceBy(Object* object);
44 
46  virtual Beam* clone(const std::string& name);
47 
49  virtual void execute();
50 
52  static Beam* find(const std::string& name);
53 
54  //ff => get gamma value
55  double getGamma() const;
56 
57  //ff => get PC value
58  double getPC() const;
59 
61  size_t getNumberOfParticles() const;
62 
64  const PartData& getReference() const;
65 
67  double getCurrent() const;
68 
70  double getCharge() const;
71 
73  double getFrequency() const;
74 
76  std::string getParticleName() const;
77 
79  double getMass() const;
80 
82  double getChargePerParticle() const;
83 
85  double getMassPerParticle() const;
86 
88  virtual void update();
89 
90  void print(std::ostream& os) const;
91 
92 private:
93 
94  // Not implemented.
95  Beam(const Beam&);
96  void operator=(const Beam&);
97 
98  // Clone constructor.
99  Beam(const std::string& name, Beam* parent);
100 
101  // The particle reference data.
103 
104  // The converstion from GeV to eV.
105  static const double energy_scale;
106 };
107 
108 inline std::ostream &operator<<(std::ostream& os, const Beam& b) {
109  b.print(os);
110  return os;
111 }
112 
113 #endif // OPAL_Beam_HH
std::ostream & operator<<(std::ostream &os, const Beam &b)
Definition: Beam.h:108
const std::string name
The base class for all OPAL definitions.
Definition: Definition.h:30
The base class for all OPAL objects.
Definition: Object.h:48
Particle reference data.
Definition: PartData.h:35
Definition: Beam.h:32
std::string getParticleName() const
Return Particle's name.
Definition: Beam.cpp:177
double getCurrent() const
Return the beam current in A.
Definition: Beam.cpp:165
void operator=(const Beam &)
double getChargePerParticle() const
Charge per macro particle in C.
Definition: Beam.cpp:185
virtual void execute()
Check the BEAM data.
Definition: Beam.cpp:135
static Beam * find(const std::string &name)
Find named BEAM.
Definition: Beam.cpp:145
double getCharge() const
Return the charge number in elementary charge.
Definition: Beam.cpp:169
virtual Beam * clone(const std::string &name)
Make clone.
Definition: Beam.cpp:130
PartData reference
Definition: Beam.h:102
double getPC() const
Definition: Beam.cpp:287
double getFrequency() const
Return the beam frequency in MHz.
Definition: Beam.cpp:181
size_t getNumberOfParticles() const
Return the number of (macro)particles.
Definition: Beam.cpp:155
double getGamma() const
Definition: Beam.cpp:282
double getMassPerParticle() const
Mass per macro particle in GeV/c^2.
Definition: Beam.cpp:191
double getMass() const
Return Particle's rest mass in GeV.
Definition: Beam.cpp:173
virtual void update()
Update the BEAM data.
Definition: Beam.cpp:195
void print(std::ostream &os) const
Print the object.
Definition: Beam.cpp:292
Beam()
Exemplar constructor.
Definition: Beam.cpp:54
const PartData & getReference() const
Return the embedded CLASSIC PartData.
Definition: Beam.cpp:159
virtual bool canReplaceBy(Object *object)
Test if replacement is allowed.
Definition: Beam.cpp:124
Beam(const Beam &)
virtual ~Beam()
Definition: Beam.cpp:120
static const double energy_scale
Definition: Beam.h:105
Definition: Inform.h:42