source: branches/start/MagicSoft/Simulation/Detector/Camera/creadparam.cxx@ 12562

Last change on this file since 12562 was 308, checked in by harald, 25 years ago
This the starting point for CVS controlled further developments of the camera program. The program was originally written by Jose Carlos. But here you can find a "rootified" version to the program. This means that there is no hbook stuff in it now. Also the output of the program changed to the MagicRawDataFormat. The "rootification" was done by Dirk Petry and Harald Kornmayer. In the following you can see the README file of that version: ================================================== Fri Oct 22 1999 D.P. The MAGIC Monte Carlo System Camera Simulation Programme --------------------------- 1) Description This version is the result of the fusion of H.K.'s root_camera which is described below (section 2) and another version by D.P. which had a few additional useful features. The version compiles under Linux with ROOT 2.22 installed (variable ROOTSYS has to be set). Compile as before simply using "make" in the root_camera directory. All features of H.K.'s root_camera were retained. Additional features of this version are: a) HBOOK is no longer used and all references are removed. b) Instead of HBOOK, the user is given now the possibility of having Diagnostic data in ROOT format as a complement to the ROOT Raw data. This data is written to the file which is determined by the new input parameter "diag_file" in the camera parameter file. All source code file belonging to this part have filenames starting with "MDiag". The user can read the output file using the following commands in an interactive ROOT session: root [0] .L MDiag.so root [1] new TFile("diag.root"); root [2] new TTreeViewer("T"); This brings up a viewer from which all variables of the TTree can be accessed and histogrammed. This example assumes that you have named the file "diag.root", that you are using ROOT version 2.22 or later and that you have the shared object library "MDiag.so" which is produced by the Makefile along with the executable "camera". ! The contents of the so-called diag file is not yet fixed. ! At the moment it is what J.C.G. used to put into the HBOOK ! ntuple. In future versions the moments calculation can be ! removed and the parameter list be modified correspondingly. c) Now concatenated reflector files can be read. This is useful if you have run the reflector with different parameters but you want to continue the analysis with all reflector data going into ONE ROOT outputfile. The previous camera version contained a bug which made reading of two or more concatenated reflector files impossible. d) The reflector output format was changed. It is now version 0.4 . The change solely consists in a shortening of the flag definition in the file include-MC/MCCphoton.hxx ! IF YOU WANT TO READ REFLECTOR FORMAT 0.3, you can easily ! do so by recompiling camera with the previous version of ! include-MC/MCCphoton.hxx. The change was necessary for saving space and better debugging. From now on, this format can be frozen. ! For producing reflector output in the new format, you ! of course have to recompile your reflector with the ! new include-MC/MCCphoton.hxx . e) A first version of the pixelization with the larger outer pixels is implemented. THIS IS NOT YET FULLY TESTED, but first rough tests show that it works at least to a good approximation. The present version implements the camera outline with 18 "gap-pixels" and 595 pixels in total as shown in http://sarastro.ifae.es/internal/home/hardware/camera/numbering.ps This change involved (i) The file pixels.dat is no longer needed. Instead the coordinates are generated by the program itself (takes maybe 1 second). In the file pixel-coords.txt in the same directory as this README, you find a list of the coordinates generated by this new routine. It has the format number i j x y size-factor where i and j are J.C.G.'s so called biaxis hexagonal coordinates (for internal use) and x and y are the coordinates of the pixel centers in the standard camera coordinate system in units of centimeters. The value of "size-factor" determines the linear size of the pixel relative to the central pixels. (ii) The magic.def file has two additional parameters which give the number of central pixels and the number of gap pixels (iii) In camera.h and camera.cxx several changes were necessary, among them the introduction of several new functions The newly suggested outline with asymmetric Winston cones will be implemented in a later version. f) phe files can no longer be read since this contradicts our philosophy that the analysis should be done with other programs like e.g. EVITA and not with "camera" itself. This possibility was removed. g) ROOT is no longer invoked with an interactive interface. In this way, camera can better be run as a batch program and it uses less memory. h) small changes concerning the variable "t_chan" were necessary in order to avoid segmentation faults: The variable is used as an index and it went sometimes outside the limits when camera was reading proton data. This is because the reflector files don't contain the photons in a chronological order and also the timespread can be considerably longer that the foreseen digitisation timespan. Please see the source code of camera.cxx round about line 1090. j) several unused variables were removed, a few warning messages occur when you compile camera.cxx but these can be ignored at the moment. In general the program is of course not finished. It still needs debugging, proper trigger simulation, simulation of the asymmetric version of the outer pixels, proper NSB simulation, adaption of the diag "ntuple" contents to our need and others small improvements. In the directory rfl-files there is now a file in reflector format 0.4 containing a single event produced by the starfiled adder. It has a duration of 30 ns and represents the region around the Crab Nebula. Using the enclosed input parameter file, camera should process this file without problems. 2) The README for the previous version of root_camera README for a preliminary version of the root_camera program. root_camera is based on the program "camera"of Jose Carlos Gonzalez. It was changed in the way that only the pixelisation and the distibution of the phe to the FADCs works in a first version. Using the #undef command most possibilities of the orignal program are switched of. The new parts are signed by - ROOT or __ROOT__ nearly all important codelines for ROOT output are enclosed in structures like #ifdef __ROOT__ code #endif __ROOT__ In same case the new lines are signed by a comment with the word ROOT in it. For timing of the pulse some variable names are changed. (t0, t1, t --> t_ini, t_fin, t_1st, t_chan,...) Look also for this changes. For the new root-file is also a change in readparm-files - __DETAIL_TRIGGER__ This is for the implementation of the current work on trigger studies. Because the class MTrigger is not well documented it isn´t a part of this tar file. Only a dummy File exists. With all files in the archive, the root_camera program should run. A reflector file is in the directory rfl-files ================================================== From now on, use CVS for development!!!!
File size: 20.1 KB
Line 
1//=//////////////////////////////////////////////////////////////////////
2//=
3//= creadparam
4//=
5//= @file creadparam.cxx
6//= @desc Reading of parameters 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.cxx,v $
21//= $Revision: 1.1.1.1 $
22//= $Author: harald $
23//= $Date: 1999-11-05 11:59:34 $
24//=
25//=//////////////////////////////////////////////////////////////////////
26
27// @T \newpage
28
29//!@section Source code of |creadparam.cxx|.
30
31/*!@"
32
33 This section describes briefly the source code for the file
34 |creadparam.cxx|. This file is very closely related to the file
35 |readparams.cxx| from the |reflector| program. Actually, this later
36 file was the ancestror of the file you are looking at.
37
38 All the defines it uses are located in the file |creadparam.h|. In
39 the first one we can see the definitions of the commands available
40 for the parameters file. We describe these commands in a later
41 section.
42
43 @"*/
44
45//!@subsection Includes and Global variables definition.
46
47/*!@"
48
49 All the defines are located in the file {\tt creadparam.h}.
50
51 @"*/
52
53//!@{
54
55#include "creadparam.h"
56
57//!@}
58
59//!@subsection Definition of global variables.
60
61/*!@"
62
63 Here we define the global variables where the values from the
64 parameters file are stored.
65
66 @"*/
67
68//!@{
69
70static char Input_filename[PATH_MAX_LENGTH]; //@< input filename
71static char Output_filename[PATH_MAX_LENGTH]; //@< output filename
72static char Data_filename[PATH_MAX_LENGTH]; //@< data filename
73static char DIAG_filename[PATH_MAX_LENGTH]; //@< data filename
74static char ROOT_filename[PATH_MAX_LENGTH]; //@< data filename
75static char CT_filename[PATH_MAX_LENGTH]; //@< name of the CT def. file
76static int simulateNSB = TRUE; //@< Will we simulate NSB?
77static int anaPixels = -1; //@< number of pixels for the analysis
78static float meanNSB; //@< NSB mean value (per pixel)
79static float qThreshold; //@< Threshold value
80static float qTailCut; //@< Tail Cut value
81static int nIslandsCut; //@< Islands Cut value
82static int countIslands = TRUE; //@< Will we count the islands?
83static long int Seeds[2];
84static int *Skip;
85static int nSkip=0;
86static int Data_From_STDIN = FALSE;
87static int Read_Phe = FALSE;
88static int Read_Phe_All = FALSE;
89static int Write_All_Images = FALSE;
90static int Write_All_Data = FALSE;
91static int Select_Energy = TRUE;
92static float Select_Energy_le = 0.0; //@< GeV
93static float Select_Energy_ue = 100000.0; //@< GeV
94static float Trigger_Radius;
95static int Set_Trigger_Radius=FALSE;
96static float fCorrection;
97static int Apply_Correction=FALSE;
98//!@}
99
100//!@subsection The function |readparam()|.
101
102//!-----------------------------------------------------------
103// @name creadparam
104//
105// @desc read parameters from the stdin / parameters file
106//
107// @var *filename Name of the parameters file (NULL->STDIN)
108//
109// @date Mon Sep 14 13:27:56 MET DST 1998
110//------------------------------------------------------------
111// @function
112
113//!@{
114void
115readparam(char * filename)
116{
117 char sign[] = GLUE_postp( PROGRAM, VERSION ); //@< initialize sign
118 char line[LINE_MAX_LENGTH]; //@< line to get from the stdin
119 char token[ITEM_MAX_LENGTH]; //@< a single token
120 int i, j; //@< dummy counters
121 ifstream ifile;
122
123 // use cin or ifile (reading from STDIN or from parameters file?
124 if ( filename != NULL )
125 ifile.open( filename );
126
127 // get signature
128 if ( filename != NULL )
129 ifile.getline(line, LINE_MAX_LENGTH);
130 else
131 cin.getline(line, LINE_MAX_LENGTH);
132 line[strlen(SIGNATURE)] = '\0';
133 strcpy(line, sign);
134 if (strcmp(sign, SIGNATURE) != 0) {
135 cerr << "ERROR: Signature of parameters file is not correct\n";
136 cerr << '"' << sign << '"' << '\n';
137 cerr << "should be: " << SIGNATURE << '\n';
138 exit(1);
139 }
140
141 // loop till the "end" directive is reached
142 int is_end = FALSE;
143 while (! is_end) {
144
145 // get line from file or stdin
146 if ( filename != NULL )
147 ifile.getline(line, LINE_MAX_LENGTH);
148 else
149 cin.getline(line, LINE_MAX_LENGTH);
150
151 // skip comments (start with '#')
152 if (line[0] == '#')
153 continue;
154
155 // show user comments (start with '>')
156 if (line[0] == '>') {
157 cout << line << endl << flush;
158 continue;
159 }
160
161 // look for each item at the beginning of the line
162 for (i=0; i<=end_file; i++)
163 if (strstr(line, ITEM_NAMES[i]) == line)
164 break;
165
166 // if it is not a valid line, just ignore it
167 if (i == end_file+1) {
168 cerr << "Skipping unknown token in [" << line << "]\n";
169 continue;
170 }
171
172 // case block for each directive
173 switch ( i ) {
174
175 case input_file: //@< name of the input file
176
177 // get the name of the input_file from the line
178 sscanf(line, "%s %s", token, Input_filename);
179
180 break;
181
182 case output_file: //@< name of the output file
183
184 // get the name of the output_file from the line
185 sscanf(line, "%s %s", token, Output_filename);
186
187 break;
188
189 case data_file: //@< name of the data file
190
191 // get the name of the data_file from the line
192 sscanf(line, "%s %s", token, Data_filename);
193
194 break;
195
196 case diag_file: //@< name of the DIAG file
197
198 // get the name of the data_file from the line
199 sscanf(line, "%s %s", token, DIAG_filename);
200 cout << '[' << DIAG_filename << ']' << endl << flush;
201
202 break;
203
204 case root_file: //@< name of the ROOT file
205
206 // get the name of the data_file from the line
207 sscanf(line, "%s %s", token, ROOT_filename);
208 cout << '[' << ROOT_filename << ']' << endl << flush;
209
210 break;
211
212 case ct_file: //@< name of the telescope file
213
214 // get the name of the ct_file from the line
215 sscanf(line, "%s %s", token, CT_filename);
216
217 break;
218
219 case nsb_on: //@< simulate NSB?
220
221 // we will simulate NSB
222 simulateNSB = TRUE;
223
224 break;
225
226 case nsb_off: //@< simulate NSB?
227
228 // we will NOT simulate NSB
229 simulateNSB = FALSE;
230
231 break;
232
233 case nsb_mean: //@< value of <NSB> per pixel
234
235 // get value of <NSB> (in photons)
236 sscanf(line, "%s %f", token, &meanNSB);
237 simulateNSB = TRUE;
238
239 break;
240
241 case ana_pixels: //@< number of pixels for analysis
242
243 // number of pixels for analysis
244 sscanf(line, "%s %d", token, &anaPixels);
245
246 break;
247
248 case threshold: //@< value of threshold for trigger (q0)
249
250 // get value of threshold (in ph.e.)
251 sscanf(line, "%s %f", token, &qThreshold);
252
253 break;
254
255 case tail_cut: //@< value of tail_cut (t0)
256
257 // get value of tail_cut (in ph.e.)
258 sscanf(line, "%s %f", token, &qTailCut);
259
260 break;
261
262 case islands_on: //@< DO count islands
263
264 // DO count islands
265 countIslands = TRUE;
266
267 break;
268
269 case islands_off: //@< do NOT count islands
270
271 // do NOT count islands
272 countIslands = FALSE;
273
274 break;
275
276 case islands_cut: //@< value of islands_cut (i0)
277
278 // get value of islands_cut (in ph.e.)
279 sscanf(line, "%s %d", token, &nIslandsCut);
280 countIslands = TRUE;
281
282 break;
283
284 case seeds: //@< values of seeds for random numbers
285
286 // get seeds
287 sscanf(line, "%s %ld %ld", token, &Seeds[0], &Seeds[1]);
288
289 break;
290
291 case skip: //@< skip pathological showers
292
293 // get showers to skip
294 cin >> nSkip;
295 Skip = new int[nSkip];
296 for (j=0; j<nSkip; ++j) {
297 cin >> Skip[j];
298 cout << Skip[j] << endl << flush;
299 }
300
301 break;
302
303 case data_from_stdin: //@< to read data from stdin
304
305 // change boolean value
306 Data_From_STDIN = TRUE;
307
308 break;
309
310 case read_phe: //@< to read PHE files
311
312 // change boolean value
313 Read_Phe = TRUE;
314
315 break;
316
317 case read_phe_all: //@< to read PHE files from write_all_images
318
319 // change boolean value
320 Read_Phe_All = TRUE;
321
322 break;
323
324 case write_all_images: //@< to write ALL the images
325
326 // change boolean value
327 Write_All_Images = TRUE;
328
329 break;
330
331 case write_all_data: //@< to write single pixel data
332
333 // change boolean value
334 Write_All_Data = TRUE;
335
336 break;
337
338 case select_energy: //@< value of islands_cut (i0)
339
340 // get energy range
341 sscanf(line, "%s %f %f", token, &Select_Energy_le, &Select_Energy_ue);
342 Select_Energy = TRUE;
343
344 break;
345
346 case trigger_radius: //@< set radius of trigger area
347
348 // get trigger radius
349 sscanf(line, "%s %f", token, &Trigger_Radius);
350 Set_Trigger_Radius = TRUE;
351
352 break;
353
354 case correction: //@< apply a kind of correction to pixel values
355
356 // get trigger radius
357 sscanf(line, "%s %f", token, &fCorrection);
358 Apply_Correction = TRUE;
359
360 break;
361
362 case end_file: //@< end of the parameters file
363
364 // show a short message
365 is_end = TRUE;
366
367 break;
368
369 } // switch ( i )
370
371 } // while (! is_end)
372
373 // after the loop is finished, return to the main function
374 return;
375}
376//!@}
377
378
379//!-----------------------------------------------------------
380// @name get_input_filename
381//
382// @desc get name of the input file
383//
384// @return Name of the Input file
385//
386// @date Mon Sep 14 13:27:56 MET DST 1998
387//------------------------------------------------------------
388// @function
389
390//!@{
391char *
392get_input_filename(void)
393{
394 return (Input_filename);
395}
396//!@}
397
398
399//!-----------------------------------------------------------
400// @name get_output_filename
401//
402// @desc get name of the output file
403//
404// @return Name of the Output file
405//
406// @date Mon Sep 14 13:27:56 MET DST 1998
407//------------------------------------------------------------
408// @function
409
410//!@{
411char *
412get_output_filename(void)
413{
414 return (Output_filename);
415}
416//!@}
417
418
419//!-----------------------------------------------------------
420// @name get_data_filename
421//
422// @desc get name of the data file
423//
424// @return Name of the Data file
425//
426// @date Mon Sep 14 13:27:56 MET DST 1998
427//------------------------------------------------------------
428// @function
429
430//!@{
431char *
432get_data_filename(void)
433{
434 return (Data_filename);
435}
436//!@}
437
438
439//!-----------------------------------------------------------
440// @name get_diag_filename
441//
442// @desc get name of the diagnostic output file
443//
444// @return Name of the DIAG file
445//
446// @date Mon Sep 14 13:27:56 MET DST 1998
447//------------------------------------------------------------
448// @function
449
450//!@{
451char *
452get_diag_filename(void)
453{
454 return (DIAG_filename);
455}
456//!@}
457
458
459//!-----------------------------------------------------------
460// @name get_root_filename
461//
462// @desc get name of the ROOT file
463//
464// @return Name of the ROOT file
465//
466// @date Mon Sep 14 13:27:56 MET DST 1998
467//------------------------------------------------------------
468// @function
469
470//!@{
471char *
472get_root_filename(void)
473{
474 return (ROOT_filename);
475}
476//!@}
477
478
479
480//!-----------------------------------------------------------
481// @name get_ct_filename
482//
483// @desc get name of CT definition file
484//
485// @return Name of the CT definition file
486//
487// @date Mon Sep 14 13:27:56 MET DST 1998
488//------------------------------------------------------------
489// @function
490
491//!@{
492char *
493get_ct_filename(void)
494{
495 return (CT_filename);
496}
497//!@}
498
499
500//!-----------------------------------------------------------
501// @name get_nsb
502//
503// @desc are we going to simulate NSB ?
504//
505// @var *n Mean value for the NSB (ph.e./pixel)
506// @return TRUE: we'll simulate NSB; FALSE: we won't
507//
508// @date Mon Sep 14 13:27:56 MET DST 1998
509//------------------------------------------------------------
510// @function
511
512//!@{
513int
514get_nsb(float *n)
515{
516 *n = meanNSB;
517 return ( simulateNSB );
518}
519//!@}
520
521
522//!-----------------------------------------------------------
523// @name get_threshold
524//
525// @desc get threshold value
526//
527// @return Value of the threshold q$_0$
528//
529// @date Mon Sep 14 13:27:56 MET DST 1998
530//------------------------------------------------------------
531// @function
532
533//!@{
534float
535get_threshold(void)
536{
537 return( qThreshold );
538}
539//!@}
540
541
542//!-----------------------------------------------------------
543// @name get_tail_cut
544//
545// @desc get tail cut value
546//
547// @return Value for the Tail-cut
548//
549// @date Mon Sep 14 13:27:56 MET DST 1998
550//------------------------------------------------------------
551// @function
552
553//!@{
554float
555get_tail_cut(void)
556{
557 return( qTailCut );
558}
559//!@}
560
561
562//!-----------------------------------------------------------
563// @name get_islands_cut
564//
565// @desc are we going to count the islands ?
566//
567// @var *n Cut on islands number
568// @return TRUE: we'll count the islands; FALSE: we won't
569//
570// @date Mon Sep 14 13:27:56 MET DST 1998
571//------------------------------------------------------------
572// @function
573
574//!@{
575int
576get_islands_cut(int *n)
577{
578 *n = nIslandsCut;
579 return ( countIslands );
580}
581//!@}
582
583
584//!-----------------------------------------------------------
585// @name get_ana_pixels
586//
587// @desc number of pixels for the analysis
588//
589// @return Number of pixels to use in the image parameters
590//
591// @date Mon Sep 14 13:27:56 MET DST 1998
592//------------------------------------------------------------
593// @function
594
595//!@{
596int
597get_ana_pixels(void)
598{
599 return ( anaPixels );
600}
601//!@}
602
603
604//!-----------------------------------------------------------
605// @name get_seeds
606//
607// @desc are we going to count the islands ?
608//
609// @var *n Number of the seed
610// @return N-th random-number Seed
611//
612// @date Mon Sep 14 13:27:56 MET DST 1998
613//------------------------------------------------------------
614// @function
615
616//!@{
617long int
618get_seeds(int n)
619{
620 return ( Seeds[n] );
621}
622//!@}
623
624
625//!-----------------------------------------------------------
626// @name get_skip_showers
627//
628// @desc get list of showers to skip
629//
630// @var *s1 Pointer to a vector of number of showers
631//
632// @date Mon Sep 14 13:27:56 MET DST 1998
633//------------------------------------------------------------
634// @function
635
636//!@{
637void
638get_skip_showers( int *s )
639{
640 int i;
641 for (i=0; i<nSkip; ++i)
642 s[i] = Skip[i];
643}
644//!@}
645
646
647//!-----------------------------------------------------------
648// @name get_nskip_showers
649//
650// @desc get number of showers to skip
651//
652// @return Number of showers to be skipped
653//
654// @date Mon Sep 14 13:27:56 MET DST 1998
655//------------------------------------------------------------
656// @function
657
658//!@{
659int
660get_nskip_showers( void )
661{
662 return( nSkip );
663}
664//!@}
665
666
667//!-----------------------------------------------------------
668// @name get_data_from_stdin
669//
670// @desc get whether we will read the data from the STDIN
671//
672// @return TRUE: we'll read data from STDIN; FALSE: we won't
673//
674// @date Wed Nov 25 13:21:00 MET 1998
675//------------------------------------------------------------
676// @function
677
678//!@{
679int
680get_data_from_stdin(void)
681{
682 return ( Data_From_STDIN );
683}
684//!@}
685
686
687//!-----------------------------------------------------------
688// @name get_read_phe
689//
690// @desc get whether we will read PHE files
691//
692// @return TRUE: we'll read PHE files; FALSE: we won't
693//
694// @date Wed Nov 25 13:21:00 MET 1998
695//------------------------------------------------------------
696// @function
697
698//!@{
699int
700get_read_phe(void)
701{
702 return ( Read_Phe );
703}
704//!@}
705
706
707//!-----------------------------------------------------------
708// @name get_read_phe_all
709//
710// @desc get whether we will read PHE files, with write_all_images
711//
712// @return TRUE: we'll do it; FALSE: we won't
713//
714// @date Wed Nov 25 13:21:00 MET 1998
715//------------------------------------------------------------
716// @function
717
718//!@{
719int
720get_read_phe_all(void)
721{
722 return ( Read_Phe_All );
723}
724//!@}
725
726
727//!-----------------------------------------------------------
728// @name write_all_images
729//
730// @desc write all images to .phe, even those without trigger
731//
732// @return TRUE: we'll write everything; FALSE: we won't
733//
734// @date Wed Nov 25 13:21:00 MET 1998
735//------------------------------------------------------------
736// @function
737
738//!@{
739int
740get_write_all_images(void)
741{
742 return ( Write_All_Images );
743}
744//!@}
745
746
747//!-----------------------------------------------------------
748// @name write_all_data
749//
750// @desc write single pixel data to file .dat
751//
752// @return TRUE: we'll write everything; FALSE: we won't
753//
754// @date Wed Nov 25 13:21:00 MET 1998
755//------------------------------------------------------------
756// @function
757
758//!@{
759int
760get_write_all_data(void)
761{
762 return ( Write_All_Data );
763}
764//!@}
765
766
767//!-----------------------------------------------------------
768// @name get_select_energy
769//
770// @desc return energy range allowed for showers from .phe file
771//
772// @var *le Lower limit in the allowed energy range
773// @var *ue Lower limit in the allowed energy range
774// @return TRUE: we make selection on the energy; FALSE: we don't
775//
776// @date Wed Nov 25 13:21:00 MET 1998
777//------------------------------------------------------------
778// @function
779
780//!@{
781int
782get_select_energy(float *le, float *ue)
783{
784 *le = Select_Energy_le;
785 *ue = Select_Energy_ue;
786 return ( Select_Energy );
787}
788//!@}
789
790
791//!-----------------------------------------------------------
792// @name get_trigger_radius
793//
794// @desc return the radius of the trigger area in the camera (if set)
795//
796// @var *radius Radius of the trigger area in the camera
797// @return TRUE: we choose a given radius for the trigger area
798//
799// @date Fri May 7 11:07:43 MET DST 1999
800//------------------------------------------------------------
801// @function
802
803//!@{
804int get_trigger_radius(float *radius)
805{
806 *radius = Trigger_Radius;
807 return ( Set_Trigger_Radius );
808}
809//!@}
810
811
812//!-----------------------------------------------------------
813// @name get_trigger_radius
814//
815// @desc return the radius of the trigger area in the camera (if set)
816//
817// @var *radius Radius of the trigger area in the camera
818// @return TRUE: we choose a given radius for the trigger area
819//
820// @date Fri May 7 11:07:43 MET DST 1999
821//------------------------------------------------------------
822// @function
823
824//!@{
825int get_correction(float *corr)
826{
827 *corr = fCorrection;
828 return ( Apply_Correction );
829}
830//!@}
831
832
833//=------------------------------------------------------------
834//!@subsection Log of this file.
835
836//!@{
837//
838// $Log: not supported by cvs2svn $
839// Revision 1.2 1999/10/22 15:01:28 petry
840// version sent to H.K. and N.M. on Fri Oct 22 1999
841//
842// Revision 1.1.1.1 1999/10/21 16:35:11 petry
843// first synthesised version
844//
845// Revision 1.6 1999/03/15 14:59:08 gonzalez
846// camera-1_1
847//
848// Revision 1.5 1999/03/02 09:56:12 gonzalez
849// *** empty log message ***
850//
851// Revision 1.4 1999/01/14 17:32:41 gonzalez
852// Added to camera the STDIN input option (data_from_input)
853//
854//!@}
855
856//=EOF
Note: See TracBrowser for help on using the repository browser.