Skip to content

Commit

Permalink
Reorder includes
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabrielgerez committed Nov 22, 2023
1 parent 9289d21 commit 6018064
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
12 changes: 6 additions & 6 deletions src/environment/DHScreening.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,16 @@

#pragma once

#include "StepFunction.h"
#include "utils/print_utils.h"
#include <memory>

#include <MRCPP/MWFunctions>
#include <MRCPP/Printer>
#include <memory>

#include "StepFunction.h"
#include "utils/print_utils.h"

namespace mrchem {
class Cavity;
/** @class DHScreening
*
* @brief Square of the Debye-Huckel Screening parameter.
Expand All @@ -49,9 +52,6 @@ namespace mrchem {
* \f]
* Where \f$C_{ion}(\mathbf{r})\f$ is the ion accessible Cavity function.
*/

class Cavity;

class DHScreening final : public StepFunction {
public:
/** @brief Standard constructor. Initializes the #cavity_ion and #kappa_out with the input parameters.
Expand Down
9 changes: 6 additions & 3 deletions src/environment/Permittivity.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,14 @@
*/

#pragma once
#include "StepFunction.h"
#include "utils/print_utils.h"

#include <memory>

#include <MRCPP/MWFunctions>
#include <MRCPP/Printer>
#include <memory>

#include "StepFunction.h"
#include "utils/print_utils.h"

namespace mrchem {
/** @class Permittivity
Expand Down

0 comments on commit 6018064

Please sign in to comment.