| 1 | ** Add changes at the beginning! **
|
|---|
| 2 |
|
|---|
| 3 | 22/01/2003 A. Moralejo
|
|---|
| 4 |
|
|---|
| 5 | Fixed small bug in reflector.c. The end of run flag was not written to the
|
|---|
| 6 | output when the max_events option was used in the input card.
|
|---|
| 7 |
|
|---|
| 8 | 21/01/2003 A. Moralejo
|
|---|
| 9 |
|
|---|
| 10 | Removed from the output a null byte written right after the ascii label
|
|---|
| 11 | containing the program version number which is at the beginning of the rfl
|
|---|
| 12 | file.
|
|---|
| 13 |
|
|---|
| 14 | 19/12/2002 - 17/01/2003 A. Moralejo
|
|---|
| 15 |
|
|---|
| 16 | Lots of changes. Moved simulation of Mie scattering and Ozone absorption from
|
|---|
| 17 | attenu.f to atm.c, and changed the way it is done. Before it was not correct
|
|---|
| 18 | for large zenith angle (a variation like for Rayleigh scattering was assumed
|
|---|
| 19 | for both Mie scattering and Ozone absorption).
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 | 13/12/2002 A. Moralejo
|
|---|
| 23 |
|
|---|
| 24 | attenu.f: Found mistake in Mie absorption calculation (height from sea
|
|---|
| 25 | level was taken as height above observation level). Changed optical depths
|
|---|
| 26 | table for Mie attenuation. Now they are no longer referred to 2 km height,
|
|---|
| 27 | but to sea level. Detector level is taken into account later in calculation.
|
|---|
| 28 |
|
|---|
| 29 | 10/12/2002 A. Moralejo
|
|---|
| 30 |
|
|---|
| 31 | attenu.f: Added comments, removed old/unnecessary code, corrected small
|
|---|
| 32 | mistake in Elterman's table for ozone optical depth.
|
|---|
| 33 |
|
|---|
| 34 | atm.c,h : removed atmospheric model "ATM_ISOTHERMAL" which actually was
|
|---|
| 35 | not even implemented in the code, although it could be selected in the
|
|---|
| 36 | input card.
|
|---|
| 37 |
|
|---|
| 38 | 15/11/2002 A. Moralejo
|
|---|
| 39 |
|
|---|
| 40 | ph2cph.c: Fixed BUG in timing calculation!!! The time to be subtracted
|
|---|
| 41 | (mirror till ground) had the wrong sign!!!
|
|---|
| 42 |
|
|---|
| 43 | reflector.c: in the wavelength range check, changed the range limits to
|
|---|
| 44 | the fixed values 290 and 600 nm. The StarFieldAdder cer files could not be
|
|---|
| 45 | processed otherwise, because the w range is not written in their headers.
|
|---|
| 46 |
|
|---|
| 47 | ph2cph.c: changed sign of phi angle to make it positive. This was necessary
|
|---|
| 48 | since now the vector indicating the reflected photon trajectory has also
|
|---|
| 49 | changed sign! (see note below, 11/11).
|
|---|
| 50 |
|
|---|
| 51 | 14/11/2002 A. Moralejo
|
|---|
| 52 | reflector.c, parms.c: Added wobble mode option. Added wobble flag to the
|
|---|
| 53 | output and also an atmospheric_model flag.
|
|---|
| 54 |
|
|---|
| 55 | 13/11/2002 A. Moralejo
|
|---|
| 56 | reflector.c, header.h: Introduced 3 counters to keep track of what proportion
|
|---|
| 57 | of the C-photons in each event have been produced by electrons, muons or
|
|---|
| 58 | other particles.
|
|---|
| 59 |
|
|---|
| 60 | 11/11/2002 A. Moralejo
|
|---|
| 61 | ph2cph.c: BUG found! and fixed: the direction cosines in the cer files are
|
|---|
| 62 | those of the downgoing directions of photons, hence third component is
|
|---|
| 63 | negative. Before it was assumed positive. This, together with a wrong
|
|---|
| 64 | reflection in the individual mirrors (also changed) resulted in a subtle
|
|---|
| 65 | error which produced a quite de-focused reflector!
|
|---|
| 66 |
|
|---|
| 67 | reflector.c: for the same reason as above, the sign of theta in the calls
|
|---|
| 68 | to makeOmega had to be changed (+pi added to the phi argument).
|
|---|
| 69 |
|
|---|
| 70 | geometry.c, ph2cph.c, reflector.c, init.h: eliminated array ct_Focal[]
|
|---|
| 71 | which contained the focal lengths of individual mirrors. It was redundant
|
|---|
| 72 | since the same information is available in ct_data[].f
|
|---|
| 73 |
|
|---|
| 74 | Oct/2002 A. Moralejo
|
|---|
| 75 | added attach.c to attach the files magic.def, axisdev.dat and
|
|---|
| 76 | reflectivity.dat to the end of the reflector output.
|
|---|
| 77 |
|
|---|
| 78 | Sept/2002 A. Moralejo
|
|---|
| 79 | header.h, reflector.c: added run header (=Corsika's), changed event header.
|
|---|
| 80 |
|
|---|
| 81 | 3/7/2002 A. Moralejo
|
|---|
| 82 | reflector.c: Introduced NaN check in the photon loop.
|
|---|
| 83 | If NAns are found in a photon data block, it is not processed.
|
|---|
| 84 |
|
|---|
| 85 | ph2cph.c: Introduced "check of positiveness" before taking the sqrt
|
|---|
| 86 | in the calculation of the photon trajectory intersection with the
|
|---|
| 87 | global paraboloid.
|
|---|
| 88 |
|
|---|
| 89 |
|
|---|
| 90 |
|
|---|