1 #ifndef select_ioutils_H
2 #define select_ioutils_H
4 // Fill an array with zeros
5 #define zeroArray(array, size)\
7 for (int u=0; u<size; u++)\
12 #define copyArray(array, copy, size)\
14 for (int u=0; u<size; u++)\
18 // Matrix Index ; TODO? ncol unused
19 #define mi(i,j,nrow,ncol)\
22 // Array Index ; TODO? d3 unused
23 #define ai(i,j,k,d1,d2,d3)\