Blame view

src/REMOTEDATA/ThemisConfigClass.php 985 Bytes
7d7445ea   Elena.Budnik   THEMIS remote center
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

/**
 * @class ThemisConfigClass
 * @brief Class that's contain all specific configuration of the IRAP Themis Mirror Site
 * @details
 */
 
class ThemisConfigClass
{
   // apus : sudo mount -t nfs  rosina1.irap.omp.eu:/ROSINA_B1/themisdata /THEMIS_B1/themisdata -v -o nfsvers=3,vers=3

	public static $NFS_DIR = "/THEMIS_B1/themisdata";
	public static $level = "l2"; 
	public static $format = "cdf";
8c5753c8   Elena.Budnik   all THEMIS observ...
16
	public static $themis = array('A', 'B', 'C', 'D', 'E');
36b01ac2   Elena.Budnik   set utc time zone...
17
	public static $TemplateXml = "/ThemisTreeTemplate.xml";
7d7445ea   Elena.Budnik   THEMIS remote center
18
19
20
21
22
23
24
25
26
	public static $START_YEAR = "2007";
	public static $program = array('peim' => 'themis_esamom2nc', 'peem' => 'themis_esamom2nc',
											 'peif' => 'themis_esa2nc', 'peef' => 'themis_esa2nc',
											 'peir' => 'themis_esa2nc', 'peer' => 'themis_esa2nc', 
											 'peib' => 'themis_esa2nc', 'peeb' => 'themis_esa2nc',
											 'psif' => 'themis_sst2nc', 'psef' => 'themis_sst2nc',
											 'high' => 'themis_fgm2nc', 'low' => 'themis_fgm2nc');
}
?>