INSTALL 5.56 KB
Newer Older
Zhang Xin's avatar
Zhang Xin committed
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
###################################################################
#                --- INSTALL ---
###################################################################
#   
###  -1-     PATHNAME for LEPHARE                          ###
#
# LEPHAREDIR -> where goes the zphot tar file
	   setenv LEPHAREDIR  /your_path/lephare_dev
     OR    export LEPHAREDIR='/your_path/lephare_dev'
 
# LEPHAREWORK -> where will go all the intermediate stuffs you will create 
	   setenv LEPHAREWORK  /your_path/lepharework
     OR    export LEPHAREWORK='/your_path/lepharework' 
#
#############################################################
#  
###  -2-    Tar files                                      ###
# 
           >  cd your_path
	   >  tar -zxvf lephare_main.tar.gz
           --> it will place the files in /your_path/lephare_dev/*
          

	(  idem for additional SED tar files if you want them
	   >  cd your_path
	   >  tar -zxvf   lephare_sed_gissel.tar.gz
	   >  tar -zxvf   lephare_sed_pegase2.tar.gz
	   >  tar -zxvf   lephare_sed_hyperz.tar.gz
           --> it will place the files in /your_path/lephare_dev/* 
	)
#
#############################################################
#   
###  -3a-     Compilation                                  ###
#
           >  cd $LEPHAREDIR/source
 	   >  make -f Makefile          (or make)
	      -> change Makefile options if needed 
       
              -> If you want to recompile the programs :
	   >  make -f Makefile clean 	(or make clean)
	   >  make -f Makefile 	


	 --> It will compile all the programs and 
             it will create the subdirectories needed
             inside  $LEPHAREWORK. 
#
###  -3b-    Create required subdirectories in $LEPHAREWORK  ###
	      it can be also done separately with  :   
	   >  make work 
	
		-> creates the following directories :
                    $LEPHAREWORK/filt
	            $LEPHAREWORK/lib_bin
	            $LEPHAREWORK/lib_mag
#
#
###  -4-  -->   It s ready         
#
#
#	
###################################################################
#         --- COMMAND LINES  ---
###################################################################
#
###################################################################
###     ASCII SEDs LIST TO BE CONVERTED IN BINARY LIBRARY       ###
###################################################################
#
#  Binary Library for STARs 
	$LEPHAREDIR/source/sedtolib -c $LEPHAREDIR/config/zphot.para -t S 
#  Binary Library for QSO ns 
	$LEPHAREDIR/source/sedtolib -c $LEPHAREDIR/config/zphot.para -t Q 
#  Binary Library for GALAXIEs 
	$LEPHAREDIR/source/sedtolib -c $LEPHAREDIR/config/zphot.para -t G 
#
#
###################################################################
###                 FILTER  FILE  CREATION                      ### 
###################################################################
# 
# create a unique file with all transmission curves to be used 
	$LEPHAREDIR/source/filter -c $LEPHAREDIR/config/zphot.para
#  
###################################################################  
###     Additional stuff relative to filters :
       ---------------------------------------
# 
# gives info about filters used
	$LEPHAREDIR/source/filter_info -f filter_hdfn.dat
#
	exemple: $LEPHAREDIR/source/filter_info -f filter_hdfn.dat 
#
# plot the transmission curves with a kshell including Supermongo macro
	$LEPHAREDIR/tools/filterplot full_pathname_for_FILTER_FILE
#
	exemple: $LEPHAREDIR/tools/filterplot $LEPHAREWORK/filt/filter_hdfn.dat
#
# atmospheric and galactic extinction through the filters
	 $LEPHAREDIR/source/filter_extinc -f filter_hdfn.dat -e extinc_etc.dat -o exti_test.out 
####################################################################
#

###################################################################
###    THEORETICAL MAGNITUDES AND K-CORRECTION COMPUTATION      ###
###################################################################
#
# mag for stars 
	$LEPHAREDIR/source/mag_star -c $LEPHAREDIR/config/zphot.para 
# mag for GALs
	$LEPHAREDIR/source/mag_gal  -c $LEPHAREDIR/config/zphot.para -t G
# mag for QSOs
	$LEPHAREDIR/source/mag_gal  -c $LEPHAREDIR/config/zphot.para -t Q -EB_V 0.
###################################################################  
###     Additional stuff :
#       -------------------
#
# z + mags + k-corr  extracted in ASCII file if 
#         option :   LIB_ASCII  YES 
#
# mag for GALs with fixed Zformation (if Z_FORM specified)
#	$LEPHAREDIR/source/mag_zform -c $LEPHAREDIR/config/zphot.para 
# -> OFF for the moment  
################################################################### 
#
###################################################################
####                 ZPHOT COMPUTATION                          ###  
###################################################################
#
# run the zphot code 
	$LEPHAREDIR/source/zphota -c $LEPHAREDIR/config/zphot.para 
#
###     Additional stuff relative to output spectra :
#       --------------------------------------------
#
# look at the best SED-fitting if (SPEC_OUT=YES) inside SM environment
	prompt>  sm
	sm> macro read "{$LEPHAREDIR}/tools/spec.sm" zsp Name [1-131] [0-1]
	Name :  file Name of the object to plot. 
	[1-131] : SED of the best Gal/GAL-FIR/GAL-STOCH/QSO/Star to plot
			 1 : GAL         
			 2 : GAL-FIR     
			 4 : GAL-BCSTOCH 
			 8 : QSO  
			 16: STAR 
			 32: GAL + GAL-FIR
			 64: GAL-BCSTOCH + GAL-FIR
        [1-131] Sum of  any combinations of the above numbers  

	[0-1] : 0 plot on screen 
		1 plot in ps file 

###################################################################
###################################################################