Free Electron
UnitRepulse.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_UnitRepulse_h__
8 #define __mobility_UnitRepulse_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 class FE_DL_EXPORT UnitRepulse :
20  public Initialize<UnitRepulse>,
21  virtual public HandlerI,
22  virtual public Config
23 {
24  public:
25  UnitRepulse(void);
26 virtual ~UnitRepulse(void);
27 
28  void initialize(void);
29 
30  // AS HandlerI
31 virtual void handle( Record &r_sig);
32 
33  private:
34  AsMobile m_asMobile;
35  AsParticle m_asParticle;
36  AsPair m_asPair;
37  AsBounded m_asBounded;
38 };
39 
40 } /* namespace */
41 
42 #endif /* __mobility_UnitRepulse_h__ */
43 
kernel
Definition: namespace.dox:3
Per-class participation in the Initialized <> mechanism.
Definition: Initialized.h:117
Definition: UnitRepulse.h:19
Reference to an instance of a Layout.
Definition: RecordSB.h:35