Free Electron
FormDrag.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 __world_FormDrag_h__
8 #define __world_FormDrag_h__
9 
10 #include "signal/signal.h"
11 #include "math/math.h"
12 #include "datatool/datatool.h"
13 #include "shape/shape.h"
14 #include "solve/solve.h"
15 namespace fe
16 {
17 namespace ext
18 {
19 /** simple form drag
20 
21  @copydoc FormDrag_info
22  */
23 class FE_DL_EXPORT FormDrag :
24  public Initialize<FormDrag>,
25  virtual public HandlerI,
26  virtual public Config
27 {
28  public:
29  FormDrag(void);
30 virtual ~FormDrag(void);
31 
32  void initialize(void);
33 
34  // AS HandlerI
35 virtual void handle( Record &r_sig);
36 
37  private:
38  AsParticle m_asParticle;
39  AsBounded m_asBounded;
40  AsAccumulate m_asAccumulate;
41 };
42 
43 } /* namespace ext */
44 } /* namespace fe */
45 
46 #endif /* __world_FormDrag_h__ */
47 
Convienience base class for specification and use of path accessors.
Definition: Config.h:19
kernel
Definition: namespace.dox:3
Per-class participation in the Initialized <> mechanism.
Definition: Initialized.h:117
simple form drag
Definition: FormDrag.h:23
Interface to handle signals from an SignalerI.
Definition: HandlerI.h:22
particle in physical space
Definition: shapeAS.h:58
possible bounding area/volume attributes
Definition: shapeAS.h:148
Reference to an instance of a Layout.
Definition: RecordSB.h:35
accumulate signal
Definition: solveAS.h:59