2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2004, The GROMACS development team,
6 * check out http://www.gromacs.org for more information.
7 * Copyright (c) 2012, by the GROMACS development team, led by
8 * David van der Spoel, Berk Hess, Erik Lindahl, and including many
9 * others, as listed in the AUTHORS file in the top-level source
10 * directory and at http://www.gromacs.org.
12 * GROMACS is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public License
14 * as published by the Free Software Foundation; either version 2.1
15 * of the License, or (at your option) any later version.
17 * GROMACS is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with GROMACS; if not, see
24 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
25 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 * If you want to redistribute modifications to GROMACS, please
28 * consider that scientific software is very special. Version
29 * control is crucial - bugs must be traceable. We will be happy to
30 * consider code for inclusion in the official distribution, but
31 * derived work must not be called official GROMACS. Details are found
32 * in the README & COPYING files - if they are missing, get the
33 * official version at http://www.gromacs.org.
35 * To help us fund GROMACS development, we humbly ask that you cite
36 * the research papers on the package. Check out http://www.gromacs.org.
60 int gmx_filter(int argc
,char *argv
[])
62 const char *desc
[] = {
63 "[TT]g_filter[tt] performs frequency filtering on a trajectory.",
64 "The filter shape is cos([GRK]pi[grk] t/A) + 1 from -A to +A, where A is given",
65 "by the option [TT]-nf[tt] times the time step in the input trajectory.",
66 "This filter reduces fluctuations with period A by 85%, with period",
67 "2*A by 50% and with period 3*A by 17% for low-pass filtering.",
68 "Both a low-pass and high-pass filtered trajectory can be written.[PAR]",
70 "Option [TT]-ol[tt] writes a low-pass filtered trajectory.",
71 "A frame is written every [TT]-nf[tt] input frames.",
72 "This ratio of filter length and output interval ensures a good",
73 "suppression of aliasing of high-frequency motion, which is useful for",
74 "making smooth movies. Also averages of properties which are linear",
75 "in the coordinates are preserved, since all input frames are weighted",
76 "equally in the output.",
77 "When all frames are needed, use the [TT]-all[tt] option.[PAR]",
79 "Option [TT]-oh[tt] writes a high-pass filtered trajectory.",
80 "The high-pass filtered coordinates are added to the coordinates",
81 "from the structure file. When using high-pass filtering use [TT]-fit[tt]",
82 "or make sure you use a trajectory that has been fitted on",
83 "the coordinates in the structure file."
87 static gmx_bool bNoJump
= TRUE
,bFit
= FALSE
,bLowAll
= FALSE
;
89 { "-nf", FALSE
, etINT
, {&nf
},
90 "Sets the filter length as well as the output interval for low-pass filtering" },
91 { "-all", FALSE
, etBOOL
, {&bLowAll
},
92 "Write all low-pass filtered frames" },
93 { "-nojump", FALSE
, etBOOL
, {&bNoJump
},
94 "Remove jumps of atoms across the box" },
95 { "-fit", FALSE
, etBOOL
, {&bFit
},
96 "Fit all frames to a reference structure" }
98 const char *topfile
,*lowfile
,*highfile
;
103 matrix topbox
,*box
,boxf
;
104 char title
[256],*grpname
;
109 t_trxstatus
*outl
,*outh
;
110 int nffr
,i
,fr
,nat
,j
,d
,m
;
112 real flen
,*filt
,sum
,*t
;
113 rvec xcmtop
,xcm
,**x
,*ptr
,*xf
,*xn
,*xp
,hbox
;
115 gmx_rmpbc_t gpbc
=NULL
;
117 #define NLEG asize(leg)
119 { efTRX
, "-f", NULL
, ffREAD
},
120 { efTPS
, NULL
, NULL
, ffOPTRD
},
121 { efNDX
, NULL
, NULL
, ffOPTRD
},
122 { efTRO
, "-ol", "lowpass", ffOPTWR
},
123 { efTRO
, "-oh", "highpass", ffOPTWR
}
125 #define NFILE asize(fnm)
127 CopyRight(stderr
,argv
[0]);
128 parse_common_args(&argc
,argv
,PCA_CAN_TIME
| PCA_CAN_VIEW
| PCA_BE_NICE
,
129 NFILE
,fnm
,asize(pa
),pa
,asize(desc
),desc
,0,NULL
,&oenv
);
131 highfile
= opt2fn_null("-oh",NFILE
,fnm
);
133 topfile
= ftp2fn(efTPS
,NFILE
,fnm
);
134 lowfile
= opt2fn_null("-ol",NFILE
,fnm
);
136 topfile
= ftp2fn_null(efTPS
,NFILE
,fnm
);
137 lowfile
= opt2fn("-ol",NFILE
,fnm
);
140 bTop
= read_tps_conf(ftp2fn(efTPS
,NFILE
,fnm
),title
,&top
,&ePBC
,
141 &xtop
,NULL
,topbox
,TRUE
);
143 gpbc
= gmx_rmpbc_init(&top
.idef
,ePBC
,top
.atoms
.nr
,topbox
);
144 gmx_rmpbc(gpbc
,top
.atoms
.nr
,topbox
,xtop
);
150 fprintf(stderr
,"Select group for least squares fit\n");
151 get_index(&top
.atoms
,ftp2fn_null(efNDX
,NFILE
,fnm
),1,&isize
,&index
,&grpname
);
153 snew(w_rls
,top
.atoms
.nr
);
154 for(i
=0; i
<isize
; i
++)
155 w_rls
[index
[i
]] = top
.atoms
.atom
[index
[i
]].m
;
156 calc_xcm(xtop
,isize
,index
,top
.atoms
.atom
,xcmtop
,FALSE
);
157 for(j
=0; j
<top
.atoms
.nr
; j
++)
158 rvec_dec(xtop
[j
],xcmtop
);
161 /* The actual filter length flen can actually be any real number */
163 /* nffr is the number of frames that we filter over */
167 for(i
=0; i
<nffr
; i
++) {
168 filt
[i
] = cos(2*M_PI
*(i
- nf
+ 1)/(real
)flen
) + 1;
171 fprintf(stdout
,"filter weights:");
172 for(i
=0; i
<nffr
; i
++) {
174 fprintf(stdout
," %5.3f",filt
[i
]);
176 fprintf(stdout
,"\n");
182 nat
= read_first_x(oenv
,&in
,opt2fn("-f",NFILE
,fnm
),
183 &(t
[nffr
- 1]),&(x
[nffr
- 1]),box
[nffr
- 1]);
187 /* x[nffr - 1] was already allocated by read_first_x */
188 for(i
=0; i
<nffr
-1; i
++)
192 outl
= open_trx(lowfile
,"w");
196 outh
= open_trx(highfile
,"w");
203 if (bNoJump
&& fr
> 0) {
207 hbox
[d
] = 0.5*box
[nffr
- 1][d
][d
];
209 for(m
=DIM
-1; m
>=0; m
--)
211 while (xn
[i
][m
] - xp
[i
][m
] <= -hbox
[m
])
213 xn
[i
][d
] += box
[nffr
- 1][m
][d
];
214 while (xn
[i
][m
] - xp
[i
][m
] > hbox
[m
])
216 xn
[i
][d
] -= box
[nffr
- 1][m
][d
];
220 gmx_rmpbc(gpbc
,nat
,box
[nffr
- 1],xn
);
223 calc_xcm(xn
,isize
,index
,top
.atoms
.atom
,xcm
,FALSE
);
226 do_fit(nat
,w_rls
,xtop
,xn
);
228 rvec_inc(xn
[j
],xcmtop
);
230 if (fr
>= nffr
&& (outh
|| bLowAll
|| fr
% nf
== nf
- 1)) {
231 /* Lowpass filtering */
235 for(i
=0; i
<nffr
; i
++) {
238 xf
[j
][d
] += filt
[i
]*x
[i
][j
][d
];
241 boxf
[j
][d
] += filt
[i
]*box
[i
][j
][d
];
243 if (outl
&& (bLowAll
|| fr
% nf
== nf
- 1))
244 write_trx(outl
,nat
,ind
,topfile
? &(top
.atoms
) : NULL
,
245 0,t
[nf
- 1],bFit
? topbox
: boxf
,xf
,NULL
,NULL
);
247 /* Highpass filtering */
250 xf
[j
][d
] = xtop
[j
][d
] + x
[nf
- 1][j
][d
] - xf
[j
][d
];
253 rvec_inc(xf
[j
],xcmtop
);
256 boxf
[j
][d
] = topbox
[j
][d
] + box
[nf
- 1][j
][d
] - boxf
[j
][d
];
257 write_trx(outh
,nat
,ind
,topfile
? &(top
.atoms
) : NULL
,
258 0,t
[nf
- 1],bFit
? topbox
: boxf
,xf
,NULL
,NULL
);
261 /* Cycle all the pointer and the box by one */
263 for(i
=0; i
<nffr
-1; i
++) {
266 copy_mat(box
[i
+1],box
[i
]);
270 } while (read_next_x(oenv
,in
,&(t
[nffr
- 1]),nat
,x
[nffr
- 1],box
[nffr
- 1]));
273 gmx_rmpbc_done(gpbc
);