OPAL (Object Oriented Parallel Accelerator Library)  2021.1.99
OPAL
ParticleMatterInteractionHandler.h
Go to the documentation of this file.
1 //
2 // Class ParticleMatterInteractionHandler
3 // Defines the handler for particle-matter interactions in the elements
4 //
5 // Copyright (c) 200x - 2021, Paul Scherrer Institut, Villigen PSI, Switzerland
6 // All rights reserved
7 //
8 // This file is part of OPAL.
9 //
10 // OPAL is free software: you can redistribute it and/or modify
11 // it under the terms of the GNU General Public License as published by
12 // the Free Software Foundation, either version 3 of the License, or
13 // (at your option) any later version.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with OPAL. If not, see <https://www.gnu.org/licenses/>.
17 //
18 #ifndef PARTICLEMATTERINTERACTIONHANDLER_HH
19 #define PARTICLEMATTERINTERACTIONHANDLER_HH
20 
21 #include <string>
22 #include "Algorithms/Vektor.h"
23 
24 class ElementBase;
25 
26 template <class T, unsigned Dim>
27 class PartBunchBase;
28 class Inform;
29 
31 
32 public:
35  virtual void apply(PartBunchBase<double, 3>* bunch,
36  const std::pair<Vector_t, double>& boundingSphere) = 0;
37  virtual const std::string getType() const = 0;
38  virtual void print(Inform& os) = 0;
39  virtual bool stillActive() = 0;
40  virtual double getTime() = 0;
41  virtual std::string getName() = 0;
42  virtual size_t getParticlesInMat() = 0;
43  virtual unsigned getRediffused() = 0;
44  virtual unsigned int getNumEntered() = 0;
45  void setFlagAllParticlesIn(bool p);
46  bool getFlagAllParticlesIn() const;
47  void updateElement(ElementBase* newref);
49 
51  Vector_t& P,
52  const double deltat,
53  bool includeFluctuations = true) const = 0;
54 
55 protected:
58  const std::string name_m;
59 };
60 
61 inline
63  element_ref_m(elref),
64  allParticleInMat_m(false),
65  name_m(name)
66 {}
67 
68 inline
70  element_ref_m = newref;
71 }
72 
73 inline
75  return element_ref_m;
76 }
77 
78 inline
81 }
82 
83 inline
85  return allParticleInMat_m;
86 }
87 #endif // PARTICLEMATTERINTERACTION_HH
const std::string name
virtual size_t getParticlesInMat()=0
virtual unsigned getRediffused()=0
virtual void print(Inform &os)=0
virtual unsigned int getNumEntered()=0
ParticleMatterInteractionHandler(std::string name, ElementBase *elref)
virtual bool computeEnergyLoss(PartBunchBase< double, 3 > *bunch, Vector_t &P, const double deltat, bool includeFluctuations=true) const =0
virtual std::string getName()=0
bool allParticleInMat_m
if all particles are in matter stay inside the particle matter interaction
virtual const std::string getType() const =0
virtual void apply(PartBunchBase< double, 3 > *bunch, const std::pair< Vector_t, double > &boundingSphere)=0
Definition: Inform.h:42