Free Electron
Jitter.h
Go to the documentation of this file.
1 /* Copyright (C) 2003-2021 Free Electron Organization
2  Any use of this software requires a license. If a valid license
3  was not distributed with this file, visit freeelectron.org. */
4 
5 /** @file */
6 
7 #ifndef __mobility_Jitter_h__
8 #define __mobility_Jitter_h__
9 
10 #include "signal/signal.h"
11 #include "math/math.h"
12 #include "datatool/datatool.h"
13 #include "shape/shape.h"
14 #include "mobilityAS.h"
15 
16 namespace fe
17 {
18 
19 /** randomly displace a particle
20 
21  @copydoc Jitter_info
22  */
23 class FE_DL_EXPORT Jitter :
24  public Initialize<Jitter>,
25  virtual public HandlerI,
26  virtual public Config
27 {
28  public:
29  Jitter(void);
30 virtual ~Jitter(void);
31 
32  void initialize(void);
33 
34  // AS HandlerI
35 virtual void handle( Record &r_sig);
36 
37  private:
38  AsMobile m_asMobile;
39  AsParticle m_asParticle;
40 };
41 
42 } /* namespace */
43 
44 #endif /* __mobility_Jitter_h__ */
45 
kernel
Definition: namespace.dox:3
Per-class participation in the Initialized <> mechanism.
Definition: Initialized.h:117
randomly displace a particle
Definition: Jitter.h:23
Reference to an instance of a Layout.
Definition: RecordSB.h:35