source: trunk/MagicSoft/Simulation/Detector/Camera/creadparam.h@ 1074

Last change on this file since 1074 was 1069, checked in by blanch, 24 years ago
Header file for creadparam.cxx version 1.12
File size: 9.7 KB
Line 
1//=//////////////////////////////////////////////////////////////////////
2//=
3//= creadparam
4//=
5//= @file creadparam.h
6//= @desc Header file
7//= @author J C Gonzalez
8//= @email gonzalez@mppmu.mpg.de
9//= @date Thu May 7 16:24:22 1998
10//=
11//=----------------------------------------------------------------------
12//=
13//= Created: Thu May 7 16:24:22 1998
14//= Author: Jose Carlos Gonzalez
15//= Purpose: Program for reflector simulation
16//= Notes: See files README for details
17//=
18//=----------------------------------------------------------------------
19//=
20//= $RCSfile: creadparam.h,v $
21//= $Revision: 1.10 $
22//= $Author: blanch $
23//= $Date: 2001-11-13 17:06:01 $
24//=
25//=//////////////////////////////////////////////////////////////////////
26
27// @T \newpage
28
29//!@section Source code of |creadparam.h|.
30
31/*!@"
32
33 In this section you can find the source code for the file
34 |creadparam.h|. This file is mainly needed by
35 |creadparam.cxx|. Here is located the definition of the commands you
36 can use in the parameters file. In this file, the first line must be
37 |camera 'version'|, where |'version'| is the appropiate version of
38 the output format (NOT the version of the camera program) which can
39 read the commands written in that parameters file. You cannot mix
40 parameters files and executables with different versions. The
41 current version is |camera 0.2|.
42
43 The commands now available for the parameters file are:
44
45 @itemize
46
47 @- |input_file| filename :
48 Sets the name of the input file (|.rfl|).
49 @- |starfield_file| filename :
50 Sets the name of the starfield input file (|.rfl|).
51 @- |ct_file| filename :
52 Sets the name of the CT definition file (|.def|).
53 @- |data_file| filename :
54 Sets the name of the output data file (|.dat|).
55 @- |nsb_on| :
56 Activates the NSB simulation. This is the default.
57 @- |nsb_off| :
58 De-activates the NSB simulation.
59 @- |nsb_mean| number :
60 Sets the mean value for the NSB.
61 Default value: 6 for CT1, 6 for MAGIC.
62 This implies always |nsb_on|.
63 @- |threshold| number :
64 Sets the Threshold value q0. Default value: 10.
65 @- |tail_cut| number :
66 Sets the Tail-Cut value.
67 Default value: 7.
68 @- |islands_cut| number :
69 Sets the Islands-Cut value i0.
70 Default value: 10.
71 @- |end_file|
72 Last command in the parameters file.
73
74 @enditemize
75
76 @ignoreHTML
77 A parameters file (a small one) looks like this:
78
79 |camera 0.2|
80
81 |input_file gm100-500.rfl|
82
83 |output_file gm100-500.phe|
84
85 |output_file gm100-500.dat|
86
87 |ct_file magic.def|
88
89 |threshold 10.0|
90
91 |tail_cut 7.0|
92
93 |nsb_mean 5.0|
94
95 |end_file|
96 @endignoreHTML
97
98@"*/
99
100//!@{
101
102#ifndef _creadparam_
103#define _creadparam_
104
105#ifndef _this_
106#define _this_ creadparam
107#endif
108
109//!@}
110
111//!@subsection Include files.
112
113//!@{
114
115#include <iostream.h>
116#include <fstream.h>
117#include <stdlib.h>
118#include <stdio.h>
119#include <string.h>
120#include <math.h>
121#include <float.h>
122
123#include "jcmacros.h"
124#include "jcdebug.h"
125
126#include "camera-v.h"
127
128#include "MTriggerDefine.h"
129#include "MFadcDefine.h"
130
131//!@}
132
133//!@subsection Macro-definitions, and constants.
134
135//!@{
136
137// now we define the list PM_ITEM_LIST of possible items in
138// the parameters file. note that they are functions of
139// T(x). we will change T(x) to be the real item or the
140// string of this item when needed
141
142#define PM_ITEM_LIST /* LIST OF ITEMS IN THE PARAMETERS FILE */ \
143T(input_file), /* input file */ \
144T(starfield_file), /* starfield file */ \
145T(starfield_center),/* center of thestarfield FOV */ \
146T(data_file), /* data file */ \
147T(root_file), /* ROOT file */ \
148T(ct_file), /* file with the characteristics of the CT */ \
149T(ana_pixels), /* size of the camera for parameters calculation */ \
150T(nsb_on), /* activates NSB simulation */ \
151T(nsb_off), /* de-activates NSB simulation */ \
152T(nsb_mean), /* mean value of NSB contribution per pixel */ \
153T(nsb_directory), /* database for the NSB */ \
154T(pixel_thres), /* value of q0 for trigger for a given pixel */ \
155T(tail_cut), /* value of tail cut (t0) */ \
156T(islands_on), /* DO count islands */ \
157T(islands_off), /* do NOT count islands */ \
158T(islands_cut), /* value of islands cut (i0) */ \
159T(seeds), /* seeds for random number generation */ \
160T(data_from_stdin), /* to read data from STDIN */ \
161T(skip), /* skip pathological showers */ \
162T(read_phe_all), /* id., but was processed with write_all_images */ \
163T(read_phe), /* read an already camera processed file */ \
164T(write_all_images),/* write to file .phe ALL images (even w.o. trigger)*/ \
165T(nowrite_McEvt), /* nowrite to file .root McEvt infos */ \
166T(write_McTrig), /* write to file .root McTrig infos */ \
167T(write_McFadc), /* write to file .root McFadc infos */ \
168T(write_all_data), /* write to file .dat ALL image data */ \
169T(select_energy), /* energy range to read: only for .phe files */ \
170T(trigger_radius), /* trigger radius for the camera */ \
171T(correction), /* factor for correction in the pixel values */ \
172T(trigger_scan), /* show signal in the diskriminator */ \
173T(fadc_scan), /* show fadc signal */ \
174T(trigger_loop), /* make loop over trigger conditions */ \
175T(trigger_prop), /* values of trigger properties */ \
176T(fadc_prop), /* values of fadc properties */ \
177T(trigger_single), /* trigger conditions */ \
178T(Trigger_Loop_Output_Only_Specialists), /* special steercard */ \
179T(telescope_axis), /* Direction of the axis telescope */ \
180T(source_offset), /* Displacement of the source from the center */ \
181T(corsika_vers), /* Version of Corsika */ \
182T(end_file) /* end of the parameters file */
183
184#define T(x) x // define T() as the name as it is
185
186enum ITEM_TYPE {
187 PM_ITEM_LIST
188};
189
190#undef T
191
192#define T(x) #x // define T() as the string of x
193
194const char *const ITEM_NAMES[] = {
195 PM_ITEM_LIST
196};
197
198#undef T
199
200#define LINE_MAX_LENGTH 400
201#define ITEM_MAX_LENGTH 40
202#define PATH_MAX_LENGTH 120
203
204// mean values of NSB contribution per pixel
205
206static const float Mean_NSB_MAGIC = 5.0; //@< for MAGIC
207static const float Mean_NSB_CT1 = 5.0; //@< for CT1
208
209//!@}
210
211//!@subsection Prototypes of functions.
212
213//!@{
214
215//++
216// prototypes
217//--
218
219void readparam(char * filename);
220char *get_input_filename(void);
221char *get_starfield_filename(void);
222void get_starfield_center(int *rh,int *rm,int *rs,int *dd,int *dm,int *ds);
223char *get_data_filename(void);
224char *get_root_filename(void);
225char *get_loop_filename(void);
226char *get_ct_filename(void);
227char *get_nsb_directory(void);
228int get_nsb(float *n, int *m);
229float get_tail_cut(void);
230int get_islands_cut(int *n);
231long int get_seeds(int n);
232int get_ana_pixels(void);
233void get_skip_showers( int *s );
234int get_nskip_showers( void );
235int get_data_from_stdin(void);
236int get_read_phe(void);
237int get_read_phe_all(void);
238int get_write_all_images(void);
239//
240int get_write_McEvt(void);
241int get_write_McTrig(void);
242int get_write_McFadc(void);
243int get_write_RawEvt(void);
244//
245int get_write_all_data(void);
246int get_select_energy(float *le, float *ue);
247int get_trigger_radius(float *radius);
248int get_correction(float *corr);
249int get_FADC_Scan(void);
250int get_Trigger_Scan(void);
251void get_Trigger_properties(float *gl, float *ot, float *ra, float *rf);
252void get_FADC_properties(float *ra, float *rf);
253int get_Trigger_Loop(int *lt, int *ut, int *lm, int *um, int *lg, int *ug);
254void get_Trigger_Single(float *t, int *m, int *g);
255void get_threshold(float *t);
256int get_indi_thres_pixel(void);
257void get_teles_axis(float *th, float *p);
258void get_source_off(float *th, float *p);
259int get_corsika_ver(void);
260//!@}
261
262//!@{
263
264#endif // ! _creadparam_
265
266//!@}
267
268//=------------------------------------------------------------
269//!@subsection Log of this file.
270
271//!@{
272
273/*
274 * $Log: not supported by cvs2svn $
275 * Revision 1.9 2001/07/19 09:29:02 blanch
276 * Header file for creadparam.cxx vrsion 1.10
277 *
278 * Revision 1.8 2001/03/05 10:44:44 blanch
279 * Header file of creadparam.cxx version 1.9
280 *
281 * Revision 1.7 2001/02/23 10:56:10 magicsol
282 * Header file for creadparam.cxx version 1.8
283 *
284 * Revision 1.6 2001/01/15 12:38:00 magicsol
285 * *** empty log message ***
286 *
287 * Revision 1.5 2000/07/04 14:13:34 MagicSol
288 * *** empty log message ***
289 *
290 * Revision 1.4 2000/05/11 14:23:28 blanch
291 * Thi version owns to the version 1.4 of creadparam.cxx.
292 *
293 * Revision 1.3 2000/03/24 18:15:46 blanch
294 * *** empty log message ***
295 *
296 * Revision 1.2 2000/02/18 17:50:07 petry
297 * This version belongs to camera.cxx 1.5.
298 * It version has been put in the repository in order to be
299 * able to share the further development with others.
300 *
301 * If you need something working, wait or take an earlier one.
302 * See file README
303 *
304 * Revision 1.1.1.1 1999/11/05 11:59:34 harald
305 * This the starting point for CVS controlled further developments of the
306 * camera program. The program was originally written by Jose Carlos.
307 * But here you can find a "rootified" version to the program. This means
308 * that there is no hbook stuff in it now. Also the output of the
309 * program changed to the MagicRawDataFormat.
310 *
311 * The "rootification" was done by Dirk Petry and Harald Kornmayer.
312 *
313 * Revision 1.2 1999/10/22 15:01:29 petry
314 * version sent to H.K. and N.M. on Fri Oct 22 1999
315 *
316 * Revision 1.1.1.1 1999/10/21 16:35:11 petry
317 * first synthesised version
318 *
319 * Revision 1.7 1999/03/15 14:59:09 gonzalez
320 * camera-1_1
321 *
322 * Revision 1.6 1999/03/02 09:56:13 gonzalez
323 * *** empty log message ***
324 *
325 * Revision 1.5 1999/01/14 17:32:43 gonzalez
326 * Added to camera the STDIN input option (data_from_input)
327 *
328 */
329
330//!@}
331//=EOF
Note: See TracBrowser for help on using the repository browser.