Commit fe8caa8a authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

apply some LAMMPS formatting style conventions for include files

parent afaacc61
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -14,8 +14,8 @@
   Contributing author: Oliver Henrich (EPCC, University of Edinburgh)
------------------------------------------------------------------------- */

#include "math.h"
#include "stdlib.h"
#include <math.h>
#include <stdlib.h>
#include "bond_oxdna_fene.h"
#include "atom.h"
#include "neighbor.h"
+0 −1
Original line number Diff line number Diff line
@@ -23,7 +23,6 @@ BondStyle(oxdna_fene,BondOxdnaFene)
#ifndef LMP_BOND_OXDNA_FENE_H
#define LMP_BOND_OXDNA_FENE_H

#include "stdio.h"
#include "bond.h"

namespace LAMMPS_NS {
+4 −4
Original line number Diff line number Diff line
@@ -14,10 +14,10 @@
   Contributing author: Oliver Henrich (EPCC, University of Edinburgh)
------------------------------------------------------------------------- */

#include "math.h"
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "pair_oxdna_coaxstk.h"
#include "mf_oxdna.h"
#include "atom.h"
+4 −4
Original line number Diff line number Diff line
@@ -14,10 +14,10 @@
   Contributing author: Oliver Henrich (EPCC, University of Edinburgh)
------------------------------------------------------------------------- */

#include "math.h"
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "pair_oxdna_excv.h"
#include "mf_oxdna.h"
#include "atom.h"
+4 −4
Original line number Diff line number Diff line
@@ -14,10 +14,10 @@
   Contributing author: Oliver Henrich (EPCC, University of Edinburgh)
------------------------------------------------------------------------- */

#include "math.h"
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "pair_oxdna_hbond.h"
#include "mf_oxdna.h"
#include "atom.h"
Loading