3 * This source code is part of
7 * GROningen MAchine for Chemical Simulations
10 * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
11 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
12 * Copyright (c) 2001-2004, The GROMACS development team,
13 * check out http://www.gromacs.org for more information.
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version 2
18 * of the License, or (at your option) any later version.
20 * If you want to redistribute modifications, please consider that
21 * scientific software is very special. Version control is crucial -
22 * bugs must be traceable. We will be happy to consider code for
23 * inclusion in the official distribution, but derived work must not
24 * be called official GROMACS. Details are found in the README & COPYING
25 * files - if they are missing, get the official version at www.gromacs.org.
27 * To help us fund GROMACS development, we humbly ask that you cite
28 * the papers on the package - you can find them in the top README file.
30 * For more info, check our website at http://www.gromacs.org
33 * Gyas ROwers Mature At Cryogenic Speed
48 #include "gmx_fatal.h"
50 t_filter
*init_filter(t_atoms
*atoms
, const char *fn
, int natom_trx
)
57 f
->grps
=init_index(fn
,&f
->grpnames
);
60 snew(f
->grps
->index
,1);
61 analyse(atoms
,f
->grps
,&f
->grpnames
,FALSE
,FALSE
);
63 snew(f
->bDisable
,f
->grps
->nr
);
64 for(g
=0; g
<f
->grps
->nr
; g
++)
65 for(i
=f
->grps
->index
[g
]; i
<f
->grps
->index
[g
+1] && !f
->bDisable
[g
]; i
++)
66 f
->bDisable
[g
] = (f
->grps
->a
[i
] >= natom_trx
);
68 snew(f
->bShow
,f
->grps
->nr
);
73 static void FilterCB(t_x11
*x11
,int dlg_mess
,int item_id
,
82 dlg
=gmx
->dlgs
[edFilter
];
86 printf("item_id: %d, set: %s\n",item_id
,set
);
91 if (sscanf(set
,"%d",&nset
)==1)
92 f
->bShow
[nset
]=!f
->bShow
[nset
];
96 write_gmx(x11
,gmx
,IDDOFILTER
);
101 t_dlg
*select_filter(t_x11
*x11
,t_gmx
*gmx
)
103 static const char *title
="Group";
104 static const char *dummy
="\"FALSE\"";
105 static const char *ok
="\"Ok\"";
108 char tmpfile
[STRLEN
];
109 int i
,j
,k
,len
,tlen
,ht
,ncol
,nrow
,x0
;
112 for(i
=0; (i
<(int)gmx
->filter
->grps
->nr
); i
++)
113 len
=max(len
,(int)strlen(gmx
->filter
->grpnames
[i
]));
116 ncol
=1+(gmx
->filter
->grps
->nr
/ 15);
117 nrow
=gmx
->filter
->grps
->nr
/ncol
;
118 if (nrow
*ncol
< gmx
->filter
->grps
->nr
)
124 ht
=1+(gmx
->filter
->grps
->nr
+1)*2+3;
126 strcpy(tmpfile
,"filterXXXXXX");
129 fprintf(stderr
,"file: %s\n",tmpfile
);
131 if ((tmp
= fopen(tmpfile
,"w")) == NULL
) {
132 sprintf(tmpfile
,"%ctmp%cfilterXXXXXX",DIR_SEPARATOR
,DIR_SEPARATOR
);
134 if ((tmp
= fopen(tmpfile
,"w")) == NULL
)
135 gmx_fatal(FARGS
,"Can not open tmp file %s",tmpfile
);
138 fprintf(tmp
,"grid %d %d {\n\n",tlen
,ht
);
140 for(k
=j
=0,x0
=1; (j
<ncol
); j
++,x0
+=len
+1) {
141 fprintf(tmp
,"group \"%s-%d\" %d 1 %d %d {\n",title
,j
+1,x0
,len
,ht
-5);
142 for(i
=0; (i
<nrow
) && (k
<gmx
->filter
->grps
->nr
); i
++,k
++)
143 if (!gmx
->filter
->bDisable
[k
])
144 fprintf(tmp
,"checkbox \"%s\" \"%d\" %s %s %s\n",
145 gmx
->filter
->grpnames
[k
],k
,dummy
,dummy
,dummy
);
147 fprintf(tmp
,"statictext { \" %s\" } \"%d\" %s %s %s\n",
148 gmx
->filter
->grpnames
[k
],k
,dummy
,dummy
,dummy
);
149 fprintf(tmp
,"}\n\n");
151 fprintf(tmp
,"simple 1 %d %d 2 {\n",ht
-3,tlen
-2);
152 fprintf(tmp
,"defbutton %s %s %s %s %s\n",ok
,ok
,dummy
,dummy
,dummy
);
153 fprintf(tmp
,"}\n\n}\n");
156 dlg
=ReadDlg(x11
,gmx
->wd
->self
,title
,x11
->fg
,x11
->bg
,tmpfile
,
157 0,0,TRUE
,FALSE
,FilterCB
,gmx
);