-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAOloopControl_compTools.c
285 lines (162 loc) · 7.72 KB
/
AOloopControl_compTools.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
/**
* @file AOloopControl_compTools.c
* @brief Adaptive Optics Control loop engine misc computation tools
*
* AO engine uses stream data structure
*
* @bug No known bugs.
*
*
*/
#define _GNU_SOURCE
// uncomment for test print statements to stdout
//#define _PRINT_TEST
/* =============================================================================================== */
/* =============================================================================================== */
/* HEADER FILES */
/* =============================================================================================== */
/* =============================================================================================== */
#include <string.h>
#include "CommandLineInterface/CLIcore.h"
#include "AOloopControl/AOloopControl.h"
#include "AOloopControl_compTools/AOloopControl_compTools.h"
#include "COREMOD_memory/COREMOD_memory.h"
/* =============================================================================================== */
/* =============================================================================================== */
/* GLOBAL DATA DECLARATION */
/* =============================================================================================== */
/* =============================================================================================== */
/* =============================================================================================== */
/* MAIN DATA STRUCTURES */
/* =============================================================================================== */
static int INITSTATUS_AOloopControl_compTools = 0;
#define NB_AOloopcontrol 10 // max number of loops
int AOloopcontrol_meminit = 0;
static int AOlooploadconf_init = 0;
// defined in AOloopControl.c
extern AOLOOPCONTROL_CONF *AOconf; // configuration - this can be an array
// CLI commands
//
// function CLI_checkarg used to check arguments
// CLI_checkarg ( CLI argument index , type code )
//
// type codes:
// 1: float
// 2: long
// 3: string, not existing image
// 4: existing image
// 5: string
//
/* =============================================================================================== */
/* =============================================================================================== */
/* FUNCTIONS SOURCE CODE */
/* =============================================================================================== */
/* =============================================================================================== */
/** @name AOloopControl functions */
/* =============================================================================================== */
/** @name AOloopControl_compTools - 1. COMPUTATION UTILITIES & TOOLS */
/* =============================================================================================== */
/** @brief CLI function for AOloopControl_CrossProduct */
int_fast8_t AOloopControl_compTools_CrossProduct_cli() {
if(CLI_checkarg(1,4)+CLI_checkarg(2,4)+CLI_checkarg(3,3)==0) {
AOloopControl_compTools_CrossProduct(data.cmdargtoken[1].val.string, data.cmdargtoken[2].val.string, data.cmdargtoken[3].val.string);
return 0;
}
else return 1;
}
/** @brief CLI function for AOloopControl_mkSimpleZpokeM */
int_fast8_t AOloopControl_compTools_mkSimpleZpokeM_cli()
{
if(CLI_checkarg(1,2)+CLI_checkarg(2,2)+CLI_checkarg(3,3)==0) {
AOloopControl_compTools_mkSimpleZpokeM(data.cmdargtoken[1].val.numl, data.cmdargtoken[2].val.numl, data.cmdargtoken[3].val.string);
return 0;
}
else return 1;
}
void __attribute__ ((constructor)) libinit_AOloopControl_compTools()
{
if( INITSTATUS_AOloopControl_compTools == 0)
{
init_AOloopControl_compTools();
RegisterModule(__FILE__, "cacao", "AO loop control - computation tools");
INITSTATUS_AOloopControl_compTools = 1;
}
}
int_fast8_t init_AOloopControl_compTools()
{
FILE *fp;
/* =============================================================================================== */
/** @name AOloopControl_compTools - 1. COMPUTATION UTILITIES & TOOLS */
/* =============================================================================================== */
RegisterCLIcommand("aolcrossp", __FILE__, AOloopControl_compTools_CrossProduct_cli, "compute cross product between two cubes. Apply mask if image xpmask exists", "<cube1> <cube2> <output image>", "aolcrossp imc0 imc1 crosspout", "AOloopControl_compTools_CrossProduct(char *ID1_name, char *ID1_name, char *IDout_name)");
RegisterCLIcommand("aolmksimplezpM", __FILE__, AOloopControl_compTools_mkSimpleZpokeM_cli, "make simple poke sequence", "<dmsizex> <dmsizey> <output image>", "aolmksimplezpM 50 50 pokeM", "long AOloopControl_compTools_mkSimpleZpokeM( long dmxsize, long dmysize, char *IDout_name)");
// add atexit functions here
// atexit((void*) myfunc);
}
/* =============================================================================================== */
/** @name AOloopControl_compTools - 1. COMPUTATION UTILITIES & TOOLS */
/* =============================================================================================== */
// measures cross product between 2 cubes
long AOloopControl_compTools_CrossProduct(const char *ID1_name, const char *ID2_name, const char *IDout_name)
{
long ID1, ID2, IDout;
long xysize1, xysize2;
long zsize1, zsize2;
long z1, z2;
long ii;
long IDmask;
ID1 = image_ID(ID1_name);
ID2 = image_ID(ID2_name);
xysize1 = data.image[ID1].md[0].size[0]*data.image[ID1].md[0].size[1];
xysize2 = data.image[ID2].md[0].size[0]*data.image[ID2].md[0].size[1];
zsize1 = data.image[ID1].md[0].size[2];
zsize2 = data.image[ID2].md[0].size[2];
if(xysize1!=xysize2)
{
printf("ERROR: cubes %s and %s have different xysize: %ld %ld\n", ID1_name, ID2_name, xysize1, xysize2);
exit(0);
}
IDmask = image_ID("xpmask");
IDout = create_2Dimage_ID(IDout_name, zsize1, zsize2);
for(ii=0; ii<zsize1*zsize2; ii++)
data.image[IDout].array.F[ii] = 0.0;
if(IDmask==-1)
{
printf("No mask\n");
fflush(stdout);
for(z1=0; z1<zsize1; z1++)
for(z2=0; z2<zsize2; z2++)
{
for(ii=0; ii<xysize1; ii++)
{
data.image[IDout].array.F[z2*zsize1+z1] += data.image[ID1].array.F[z1*xysize1+ii] * data.image[ID2].array.F[z2*xysize2+ii];
}
}
}
else
{
printf("Applying mask\n");
fflush(stdout);
for(z1=0; z1<zsize1; z1++)
for(z2=0; z2<zsize2; z2++)
{
for(ii=0; ii<xysize1; ii++)
{
data.image[IDout].array.F[z2*zsize1+z1] += data.image[IDmask].array.F[ii]*data.image[IDmask].array.F[ii]*data.image[ID1].array.F[z1*xysize1+ii] * data.image[ID2].array.F[z2*xysize2+ii];
}
}
}
return(IDout);
}
// create simple poke matrix
long AOloopControl_compTools_mkSimpleZpokeM( long dmxsize, long dmysize, char *IDout_name)
{
long IDout;
uint_fast16_t dmxysize;
uint_fast16_t ii, jj, kk;
dmxysize = dmxsize * dmysize;
IDout = create_3Dimage_ID(IDout_name, dmxsize, dmysize, dmxysize);
for(kk=0; kk<dmxysize; kk++)
data.image[IDout].array.F[kk*dmxysize + kk] = 1.0;
return(IDout);
}