(file) Return to configsdp.txt CVS log (file) (dir) Up to [Development] / JSOC

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

Karen Tian
Powered by
ViewCVS 0.9.4