Skip to content

Commit 6018064

Browse files
committed
Reorder includes
1 parent 9289d21 commit 6018064

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

src/environment/DHScreening.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,16 @@
2525

2626
#pragma once
2727

28-
#include "StepFunction.h"
29-
#include "utils/print_utils.h"
28+
#include <memory>
29+
3030
#include <MRCPP/MWFunctions>
3131
#include <MRCPP/Printer>
32-
#include <memory>
32+
33+
#include "StepFunction.h"
34+
#include "utils/print_utils.h"
3335

3436
namespace mrchem {
37+
class Cavity;
3538
/** @class DHScreening
3639
*
3740
* @brief Square of the Debye-Huckel Screening parameter.
@@ -49,9 +52,6 @@ namespace mrchem {
4952
* \f]
5053
* Where \f$C_{ion}(\mathbf{r})\f$ is the ion accessible Cavity function.
5154
*/
52-
53-
class Cavity;
54-
5555
class DHScreening final : public StepFunction {
5656
public:
5757
/** @brief Standard constructor. Initializes the #cavity_ion and #kappa_out with the input parameters.

src/environment/Permittivity.h

+6-3
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,14 @@
2424
*/
2525

2626
#pragma once
27-
#include "StepFunction.h"
28-
#include "utils/print_utils.h"
27+
28+
#include <memory>
29+
2930
#include <MRCPP/MWFunctions>
3031
#include <MRCPP/Printer>
31-
#include <memory>
32+
33+
#include "StepFunction.h"
34+
#include "utils/print_utils.h"
3235

3336
namespace mrchem {
3437
/** @class Permittivity

0 commit comments

Comments
 (0)