1 arta 1.1 # This file contains JSOC_SDP-specific configuration information. It is used only if the '-sdp' flag is used
|
2 arta 1.22 # as an argument to the check-out script (checkoutDRMS.pl). To change the configuration at Stanford, edit
3 # this file directly, and commit those changes to the source-tree repository.
|
4 arta 1.1
|
5 arta 1.22 # The lines in the __PROJ_MK_RULES__ section define JSOC_SDP-specific make variables, targets, and rules. When
6 # localize.py is run, it will process this section and create JSOC/localization/make_basic.mk. These are
|
7 arta 1.1 # available to all JSOC_SDP projects.
8
|
9 arta 1.22 # The lines in the __PROJ__ section define JSOC_SDP projects. When localize.py runs, file content will be
|
10 arta 1.1 # added to JSOC/localization/Rules.mk and JSOC/localization/target.mk.
11
|
12 arta 1.22 # The lines in the __PROJCFG__ section define additional project-specific configuration. The code in this
13 # section must be in a shell-scripting language, and will be executed as is.
14
15 # The lines in the __MAKE__ section define global make variables to configure the make process. A subset of
16 # these variables defines the locations of JSOC_SDP-specific third-party libraries. These values apply to all code
17 # in both JSOC/base and JSOC/proj directories.
18
19 __DEFS__
20 q:SERVER hmidb
21 q:DRMSPGPORT 5432
|
22 arta 1.23 q:SUMS_DB_HOST hmidb3
|
23 arta 1.22 q:SUMPGPORT 5434
24 a:DRMS_LOCAL_SITE_CODE 0x0000
25 q:DBNAME jsoc
26
27 q:POSTGRES_ADMIN postgres
28 q:SUMS_MANAGER production
29 # This seems like a bad idea to make the UID a parameter. Why not just convert the SUM_MANAGER value
30 # to a UID when needed? If the UID of the SUM_MANAGER changes, we have to change the UID here.
31 q:SUMS_MANAGER_UID 388
32 q:SUMS_GROUP SOI
33 q:SUMLOG_BASEDIR /usr/local/logs/SUM
34 q:SUMBIN_BASEDIR /usr/local/bin
|
35 arta 1.23 q:SUMSERVER k1
|
36 arta 1.22 # The number of SUMS process SETS to spawn. If this number is not 1, then the number of SUMS processes
37 # is SUM_NUMSUM * 5 + 2.
38 a:SUM_NUMSUM 3
39 a:SUM_MAXNUMSUM 8
40 p:SUMS_TAPE_AVAILABLE 1
41 p:SUMS_MULTIPLE_PARTNSETS 1
42 # No idea what this parameter means. It isn't used anywhere in our code, but for some reason
43 # it is part of the config.local set, so we have to include it here.
44 a:SUMS_DEBUG 1
45 q:PRODUSER_DBHOST hmidb:5432
46 q:PRODUSER_DBNAME jsoc
47 q:PRODUSER_PRODTAB su_production.produsers
48 q:PRODUSER_COLUSER username
|
49 arta 1.24 q:SUMRM_PART_PERCENT_FREE 3
50 q:SUMRM_SLEEP 300
51 # This is a file in SUMLOG_BASEDIR.
52 q:SUMRM_LOG sum_rm.cfg
53 q:SUMRM_MAIL sys2@solar2
54 q:SUMRM_NOOP 0
55 q:SUMRM_USER production
56 q:SUMRM_NORUN_START 0
57 q:SUMRM_NORUN_STOP 0
|
58 arta 1.34 # JMD
|
59 arta 1.37 p:JMD_IS_INSTALLED 0
|
60 arta 1.34 q:JMD_URL http://localhost:8080/JMD/JMD
|
61 arta 1.38 # Remote SUMS
62 q:RS_SITE_TABLE drms.rs_sites
63 q:RS_REQUEST_TABLE drms.rs_requests
64 q:RS_SU_TABLE drms.rs_sus
65 q:RS_DBNAME jsoc
66 q:RS_DBHOST hmidb
67 a:RS_DBPORT 5432
68 q:RS_LOCKFILE /home/jsoc/locks/remotesums.lck
|
69 arta 1.1
70 __MAKE__
|
71 arta 1.22 # JSOC_SDP third-party libraries used by base
72 # The parameters in this section are used to create make variables. For example, the line
73 # 'POSTGRES_LIB = pq' will cause a make variable named POSTGRES_LIB to be created and to
74 # be assigned the value 'pq'.
75
76 # If the name in the left column contains a colon, then the name on the LHS is the parameter name. The RHS is
77 # a description of which platforms or specific machines the parameter applies to. For example,
78 # the name POSTGRES_INCS:X86_64 implies that the value of the parameter named POSTGRES_INCS is /usr/include
79 # when make is run on a linux_x86_64 machine. The RHS string can contain either a platform identifier
80 # (X86_64, IA32, AVX, or IA64) or it can be a string that identifies a particular machine, like d02.
81 # If the string is not one of the defined platform identifiers, then it is considered a machine identifier.
82 # A machine identifier can specify more than one machine. The name POSTGRES_INCS:hmidb specifies
83 # all machines whose names contain the string 'hmidb'. So, for machines hmidb, hmidb2, and hmidb3, the
84 # value of the POSTGRES_INCS parameter is /usr/local/pgsql/include.
85 #
86 # If the RHS is a platform identifier, then make compares the value of $JSOC_MACHINE (which is in
87 # reality a misnomer, since it truly specifies the name of the machine platform, not the name
88 # of the machine) to the platform name specified by the RHS string. For example,
89 # if the RHS string is 'avx', then make compares $JSOC_MACHINE to
90 # 'linux_avx', and if there is a match, then the parameter's value specified in the second column is assigned
91 # to the make variable. If the RHS is a machine identifier, then make compares the value of $MACHTYPE
92 arta 1.22 # (another misnormer, since it is the name of the machine, not the name of some type of machine ) to
93 # the machine names specified by the RHS. For example, if the RHS string is 'hmidb' then make
94 # compares $MACHTYPE to 'hmidb', and if 'hmidb' is a substring of $MACHTYPE, then the parameter's
95 # value specified in the second column is assigned to the make variable
96 #
97 # Blocks defined by the _CUST_/_ENDCUST_ tags are copied ver batim into the output make file.
98
99 POSTGRES_LIB pq
100 CFITSIO_LIB cfitsio
101
102 POSTGRES_INCS:X86_64 /usr/include
103 POSTGRES_INCS:IA32 /usr/include
104 POSTGRES_INCS:AVX /usr/include
105 POSTGRES_INCS:IA64 /usr/include/pgsql
106 POSTGRES_INCS:j1 /usr/include/pgsql
107 POSTGRES_INCS:d02 /usr/include/pgsql
108 POSTGRES_INCS:hmidb /usr/local/pgsql/include
109 POSTGRES_INCS:cl1n0 __POSTGRES_DEVELOP_NOT_INSTALLED__
110 POSTGRES_INCS:dcs /usr/include/pgsql
111
112 POSTGRES_LIBS:X86_64 /usr/lib64
113 arta 1.22 POSTGRES_LIBS:IA32 /usr/lib
114 POSTGRES_LIBS:AVX /usr/lib64
115 POSTGRES_LIBS:IA64 /usr/lib
116 POSTGRES_LIBS:j1 /usr/lib64
117 POSTGRES_LIBS:d02 /usr/lib
118 POSTGRES_LIBS:hmidb /usr/lib64
119 POSTGRES_LIBS:cl1n0 /usr/lib64
120 POSTGRES_LIBS:dcs /usr/lib64
121
122 CFITSIO_INCS:X86_64 /home/jsoc/include
123 CFITSIO_INCS:IA32 /home/jsoc/include
124 CFITSIO_INCS:AVX /home/jsoc/avx/include
125 CFITSIO_INCS:IA64 /home/jsoc/include
126 CFITSIO_INCS:j1 /home/jsoc/include
127 CFITSIO_INCS:d02 __CFITSIO_NOT_INSTALLED__
128 CFITSIO_INCS:hmidb /home/jsoc/include
129 CFITSIO_INCS:cl1n0 /home/jsoc/include
130 CFITSIO_INCS:dcs /home/jsoc/include
131
132 CFITSIO_LIBS:X86_64 /home/jsoc/lib/linux-x86_64
133 CFITSIO_LIBS:IA32 /home/jsoc/lib/linux-ia32
134 arta 1.22 CFITSIO_LIBS:AVX /home/jsoc/avx/lib
135 CFITSIO_LIBS:IA64 /home/jsoc/lib/linux-ia64
136 CFITSIO_LIBS:j1 /home/jsoc/lib/linux-x86_64
137 CFITSIO_LIBS:d02 __CFITSIO_NOT_INSTALLED__
138 CFITSIO_LIBS:hmidb /home/jsoc/lib/linux-x86_64
139 CFITSIO_LIBS:cl1n0 /home/jsoc/lib/linux-x86_64
140 CFITSIO_LIBS:dcs /home/jsoc/lib/linux-x86_64
141
142 FFTW_INCS:X86_64 /home/jsoc/include
143 FFTW_INCS:IA32 /home/jsoc/include
144 FFTW_INCS:AVX /home/jsoc/avx/include
145 FFTW_INCS:IA64 /home/jsoc/include
146
147 FFTW_LIBS:X86_64 /home/jsoc/lib/linux-x86_64
148 FFTW_LIBS:IA32 /home/jsoc/lib/linux-ia32
149 FFTW_LIBS:AVX /home/jsoc/avx/lib
150 FFTW_LIBS:IA64 /home/jsoc/lib/linux-x86_64
151
152 GSL_INCS:X86_64 /home/jsoc/include
153 GSL_INCS:IA32 /home/jsoc/include
154 GSL_INCS:AVX /home/jsoc/avx/include
155 arta 1.22 GSL_INCS:IA64 /home/jsoc/include
156
157 GSL_LIBS:X86_64 /home/jsoc/lib/linux-x86_64
158 GSL_LIBS:IA32 /home/jsoc/lib/linux-ia32
159 GSL_LIBS:AVX /home/jsoc/avx/lib
160 GSL_LIBS:IA64 /home/jsoc/lib/linux-x86_64
161
162 MPI_INCS:X86_64 /home/jsoc/mpich2/include
163 MPI_INCS:IA32
164 MPI_INCS:AVX /home/jsoc/avx/include
165 MPI_INCS:IA64
166
167 MPI_LIBS:X86_64 /home/jsoc/mpich2/lib
168 MPI_LIBS:AVX /home/jsoc/avx/lib
169
170 MPI_PATH:X86_64 /home/jsoc/mpich2/bin
171 MPI_PATH:AVX /home/jsoc/avx/bin
172
|
173 arta 1.34 TAR_INCS:X86_64 /home/jsoc/include
174 TAR_INCS:IA32 /home/jsoc/include
|
175 arta 1.39 TAR_INCS:AVX /home/jsoc/avx/include
|
176 arta 1.34 TAR_INCS:IA64 /home/jsoc/include
177
178 TAR_LIBS:X86_64 /home/jsoc/lib/linux-x86_64
179 TAR_LIBS:IA32 /home/jsoc/lib/linux-ia32
180 TAR_LIBS:AVX /home/jsoc/lib/linux_avx
181 TAR_LIBS:IA64 /home/jsoc/lib/linux-ia64
182
|
183 arta 1.22 # Set custom make file to tell the make system that the gcc cfitsio library is called
184 # libcfitsio_gcc.a
185 _CUST_
186 ifeq ($(COMPILER), gcc)
187 ifeq ($(JSOC_MACHINE), linux_x86_64)
188 CFITSIO_LIB = cfitsio_gcc
189 endif
190 endif
191 _ENDCUST_
192
193 __PROJ_MK_RULES__
|
194 arta 1.1 $(CEXESUMS): $(LIBSUMSAPI) $(LIBSUM) $(LIBDSTRUCT)
195 $(MODEXESUMS): $(LIBSUMSAPI) $(LIBSUM)
196
197 $(MODEXEDROBJ): CF_TGT := $(CF_TGT) -I$(SRCDIR)/proj/libs/dr
198 $(MODEXEDR) $(MODEXEDR_SOCK): $(LIBDR)
199 __PROJ__
200 <?xml version='1.0'?>
201 <projects>
202 <proj>
203 <name>libs</name>
204 <subdirs>
205 <subdir>astro</subdir>
206 <subdir>dr</subdir>
207 <subdir>dsputil</subdir>
208 <subdir>gapfiller</subdir>
209 <subdir>interpolate</subdir>
210 <subdir>stats</subdir>
|
211 arta 1.6 <subdir>egsehmicomp</subdir>
|
212 arta 1.7 <subdir>imrotate</subdir>
|
213 arta 1.1 </subdirs>
214 </proj>
215 <proj>
216 <name>datacapture</name>
217 <subdirs>
218 <subdir>apps</subdir>
219 </subdirs>
220 </proj>
221 <proj>
222 <name>dsdsmigr</name>
223 <subdirs>
224 <subdir>libs</subdir>
225 <subdir>apps</subdir>
226 </subdirs>
227 </proj>
228 <proj>
229 <name>maps_avgs</name>
230 <subdirs>
231 <subdir>apps</subdir>
232 </subdirs>
233 <filters>
234 arta 1.1 <filter>
235 <name>COMPILER</name>
236 <value>icc</value>
237 </filter>
238 </filters>
239 </proj>
240 <proj>
|
241 arta 1.33 <name>mhd_32daily</name>
242 <subdirs>
243 <subdir>apps</subdir>
244 </subdirs>
245 </proj>
246 <proj>
|
247 arta 1.25 <name>mhd_64cr</name>
248 <subdirs>
249 <subdir>apps</subdir>
250 </subdirs>
251 </proj>
252 <proj>
|
253 arta 1.1 <name>util</name>
254 <subdirs>
255 <subdir>apps</subdir>
256 </subdirs>
257 </proj>
258 <proj>
259 <name>lev0</name>
260 <subdirs>
261 <subdir>apps</subdir>
262 </subdirs>
263 </proj>
264 <proj>
265 <name>lev1</name>
266 <subdirs>
267 <subdir>apps</subdir>
268 </subdirs>
269 </proj>
270 <proj>
271 <name>jpe</name>
272 <subdirs>
273 <subdir>apps</subdir>
274 arta 1.1 </subdirs>
275 </proj>
276 <proj>
277 <name>lev1_aia</name>
278 <subdirs>
279 <subdir>apps</subdir>
280 </subdirs>
281 </proj>
282 <proj>
283 <name>lev1_hmi</name>
284 <subdirs>
285 <subdir>apps</subdir>
286 </subdirs>
287 </proj>
288 <proj>
289 <name>export</name>
290 <subdirs>
291 <subdir>libs/util</subdir>
292 <subdir>apps</subdir>
293 </subdirs>
294 </proj>
295 arta 1.1 <proj>
296 <name>globalhs</name>
297 <subdirs>
|
298 arta 1.21 <subdir>apps</subdir>
|
299 arta 1.20 <subdir>libs/dtgf</subdir>
|
300 arta 1.36 <subdir>libs/inv2d</subdir>
|
301 arta 1.20 <subdir>libs/pkbgn</subdir>
302 <subdir>libs/projection</subdir>
|
303 arta 1.1 </subdirs>
304 <filters>
305 <filter>
306 <name>COMPILER</name>
307 <value>icc</value>
308 </filter>
309 </filters>
310 </proj>
311 <proj>
312 <name>lev1.5_hmi</name>
313 <subdirs>
314 <subdir>libs/lev15</subdir>
315 <subdir>apps</subdir>
316 </subdirs>
317 </proj>
318 <proj>
|
319 arta 1.7 <name>lev1.5_aia</name>
320 <subdirs>
321 <subdir>apps</subdir>
322 </subdirs>
323 </proj>
324 <proj>
|
325 arta 1.1 <name>flatfield</name>
326 <subdirs>
327 <subdir>libs/flatfieldlib</subdir>
328 <subdir>apps</subdir>
|
329 arta 1.6 <subdir>off_flat_IDL</subdir>
|
330 arta 1.1 </subdirs>
331 </proj>
332 <proj>
333 <name>rings</name>
334 <subdirs>
335 <subdir>apps</subdir>
336 </subdirs>
337 </proj>
|
338 rick 1.8 <proj>
|
339 mbobra 1.14 <name>sharp</name>
340 <subdirs>
341 <subdir>apps</subdir>
342 </subdirs>
|
343 jim 1.19 <filters>
344 <filter>
345 <name>COMPILER</name>
346 <value>icc</value>
347 </filter>
348 </filters>
|
349 mbobra 1.14 </proj>
350 <proj>
|
351 rick 1.8 <name>farside</name>
352 <subdirs>
353 <subdir>apps</subdir>
354 </subdirs>
355 </proj>
356 <proj>
357 <name>timed</name>
358 <subdirs>
359 <subdir>apps</subdir>
360 </subdirs>
361 </proj>
|
362 arta 1.1 <proj>
363 <name>mag</name>
364 <subdirs>
365 <subdir>apps</subdir>
366 <subdir>pfss/apps</subdir>
367 <subdir>ambig/apps</subdir>
|
368 arta 1.9 <subdir>harp/apps</subdir>
|
369 arta 1.10 <subdir>harp/libs/matlab/mex/src/util</subdir>
|
370 arta 1.9 <subdir>harp/libs/matlab/mex/src/mex2c</subdir>
|
371 arta 1.11 <subdir>harp/libs/matlab/mfile-mex/standalone</subdir>
|
372 arta 1.12 <subdir>harp/libs/matlab/mfile-mex/assignment</subdir>
373 <subdir>harp/libs/matlab/mfile-mex/fits</subdir>
374 <subdir>harp/libs/matlab/mfile-mex/hmi-mask-patch</subdir>
|
375 arta 1.1 <subdir>ident/apps</subdir>
376 <subdir>ident/libs/mex2c</subdir>
377 <subdir>ident/libs/mexfunctions</subdir>
378 <subdir>ident/libs/util</subdir>
379 <subdir>patch/apps</subdir>
|
380 xudong 1.3 <subdir>nlfff/apps</subdir>
381 <subdir>d4vm/apps</subdir>
|
382 xudong 1.4 <subdir>remapmags/apps</subdir>
|
383 xudong 1.5 <subdir>synop/apps</subdir>
|
384 arta 1.1 </subdirs>
385 <filters>
386 <filter>
387 <name>COMPILER</name>
388 <value>icc</value>
389 </filter>
390 </filters>
391 </proj>
392 <proj>
393 <name>limbfit</name>
394 <subdirs>
395 <subdir>apps</subdir>
396 </subdirs>
|
397 jim 1.19 <filters>
398 <filter>
399 <name>COMPILER</name>
400 <value>icc</value>
401 </filter>
402 </filters>
|
403 arta 1.1 </proj>
404 <proj>
405 <name>vfisv</name>
406 <subdirs>
407 <subdir>apps</subdir>
408 </subdirs>
409 </proj>
410 <proj>
411 <name>workflow</name>
412 <subdirs>
413 <subdir>apps</subdir>
414 </subdirs>
415 </proj>
|
416 xudong 1.26 <proj>
417 <name>cgem</name>
418 <subdirs>
419 <subdir>apps</subdir>
420 <subdir>lorentz/apps</subdir>
421 </subdirs>
422 <filters>
423 <filter>
424 <name>COMPILER</name>
425 <value>icc</value>
426 </filter>
427 </filters>
428 </proj>
|
429 arta 1.1 </projects>
|
430 arta 1.2 __PROJCFG__
431 #! /bin/csh -f
432
433 # Project-specific configuration (like adding links to scripts to the $JSOCROOT/scripts
434 # directory).
435
436 find ../proj/lev0/scripts -mindepth 1 \( -path \*CVS -prune -o -exec ln -s {} . \; -a -exec echo " " {} " OK" \; \) -o -exec echo " " {} " ERROR - couldn't create link" \;
|
437 arta 1.1
|