Set default trimflag to zero

This commit is contained in:
Oliver Henrich
2024-04-05 17:52:44 +01:00
parent dc1bc8a8cf
commit 5b47038b14
10 changed files with 10 additions and 0 deletions

View File

@ -40,6 +40,7 @@ PairOxdna2Coaxstk::PairOxdna2Coaxstk(LAMMPS *lmp) : Pair(lmp)
{
single_enable = 0;
writedata = 1;
trim_flag = 0;
}
/* ---------------------------------------------------------------------- */

View File

@ -36,6 +36,7 @@ PairOxdna2Dh::PairOxdna2Dh(LAMMPS *lmp) : Pair(lmp)
{
single_enable = 0;
writedata = 1;
trim_flag = 0;
}
/* ---------------------------------------------------------------------- */

View File

@ -40,6 +40,7 @@ PairOxdnaCoaxstk::PairOxdnaCoaxstk(LAMMPS *lmp) : Pair(lmp)
{
single_enable = 0;
writedata = 1;
trim_flag = 0;
}
/* ---------------------------------------------------------------------- */

View File

@ -42,6 +42,7 @@ PairOxdnaExcv::PairOxdnaExcv(LAMMPS *lmp) : Pair(lmp)
// set comm size needed by this Pair
comm_forward = 9;
trim_flag = 0;
}
/* ---------------------------------------------------------------------- */

View File

@ -38,6 +38,7 @@ PairOxdnaHbond::PairOxdnaHbond(LAMMPS *lmp) : Pair(lmp)
{
single_enable = 0;
writedata = 1;
trim_flag = 0;
// sequence-specific base-pairing strength
// A:0 C:1 G:2 T:3, 5'- [i][j] -3'

View File

@ -39,6 +39,7 @@ PairOxdnaStk::PairOxdnaStk(LAMMPS *lmp) : Pair(lmp)
{
single_enable = 0;
writedata = 1;
trim_flag = 0;
// sequence-specific stacking strength
// A:0 C:1 G:2 T:3, 3'- [i][j] -5'

View File

@ -40,6 +40,7 @@ PairOxdnaXstk::PairOxdnaXstk(LAMMPS *lmp) : Pair(lmp)
{
single_enable = 0;
writedata = 1;
trim_flag = 0;
}
/* ---------------------------------------------------------------------- */

View File

@ -24,6 +24,7 @@ PairOxrna2Hbond::PairOxrna2Hbond(LAMMPS *lmp) : PairOxdnaHbond(lmp)
{
single_enable = 0;
writedata = 1;
trim_flag = 0;
// sequence-specific base-pairing strength
// A:0 C:1 G:2 U:3, 5'- [i][j] -3'

View File

@ -41,6 +41,7 @@ PairOxrna2Stk::PairOxrna2Stk(LAMMPS *lmp) : Pair(lmp)
{
single_enable = 0;
writedata = 1;
trim_flag = 0;
// sequence-specific stacking strength
// A:0 C:1 G:2 U:3, 3'- [i][j] -5'

View File

@ -40,6 +40,7 @@ PairOxrna2Xstk::PairOxrna2Xstk(LAMMPS *lmp) : Pair(lmp)
{
single_enable = 0;
writedata = 1;
trim_flag = 0;
}
/* ---------------------------------------------------------------------- */