Changeset 1674


Ignore:
Timestamp:
12/10/02 17:25:18 (22 years ago)
Author:
blanch
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Simulation/Detector
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Simulation/Detector/Camera/camera.cxx

    r1597 r1674  
    2121//
    2222// $RCSfile: camera.cxx,v $
    23 // $Revision: 1.46 $
     23// $Revision: 1.47 $
    2424// $Author: blanch $
    25 // $Date: 2002-11-08 17:51:00 $
     25// $Date: 2002-12-10 17:19:31 $
    2626//
    2727////////////////////////////////////////////////////////////////////////
     
    408408
    409409  char flag[SIZE_OF_FLAGS + 1];  //@< flags in the .rfl file
     410  char flag_new[4];              //@< New flag for the run header in the .rfl file
    410411
    411412  int reflector_file_version;  //@< vrsion of he reflector file
     
    12181219    if(!isA( flag, FLAG_START_OF_RUN )){
    12191220
    1220       //  We exit
    1221       //error( SIGNATURE, "Expected start of run flag, but found: %s\n", flag );
    12221221      //  We break the main loop
    12231222      cout<<"Warning: Expected start of run flag, but found:"<<flag<<endl;
     
    12271226    else { // found start of run
    12281227
     1228      fread( flag_new, 4, 1, inputfile );
     1229
     1230      if(!isA( flag_new, FLAG_START_OF_HEADER)){
     1231
     1232        //  We break the main loop
     1233        cout<<"Warning: Expected start of run header flag, but found:"<<flag<<endl;
     1234        cout<<"         We break the main loop"<<endl;
     1235        break;     
     1236      }
     1237
     1238      Float_t flag_temp[SIZE_OF_MCRUNHEADER];
     1239     
     1240      fread( flag_temp, (SIZE_OF_MCRUNHEADER)*sizeof(float), 1, inputfile );
     1241
    12291242      nshow=0;
    12301243
     
    12321245
    12331246      while( isA( flag, FLAG_START_OF_EVENT   )){ // while there is a next event
     1247        fread( flag_new, 4, 1, inputfile );
     1248
     1249        if(!isA( flag_new, FLAG_EVENT_HEADER)){
     1250
     1251        //  We break while events loop
     1252          cout<<"Warning: Expected start of event header flag, but found:"<<flag<<endl;
     1253          cout<<"         We break the while events loop"<<endl;
     1254          break;     
     1255        }
     1256
    12341257        //
    12351258        // Clear Trigger and Fadc
     
    12791302       
    12801303        // read the direction of the incoming shower
    1281        
     1304
    12821305        if (reflector_file_version<6){
    12831306          thetashw = mcevth.get_theta();
     
    17581781           
    17591782            if (Write_McEvt){
    1760                 }
     1783              Float_t ftime, ltime;
     1784              if (reflector_file_version<6){
     1785                mcevth.get_times(&ftime, &ltime);
     1786                McEvt->Fill( -1.0,
     1787                             (UShort_t) mcevth.get_primary() ,
     1788                             mcevth.get_energy(),
     1789                             -1.0,
     1790                             -1.0,
     1791                             -1.0,
     1792                             mcevth.get_theta(),
     1793                             mcevth.get_phi(),
     1794                             mcevth.get_core(),
     1795                             mcevth.get_coreX(),
     1796                             mcevth.get_coreY(),
     1797                             impactD,
     1798                             mcevth_2.get_theta_CT(),
     1799                             mcevth_2.get_phi_CT(),
     1800                             ftime,
     1801                             ltime,
     1802                             0,
     1803                             0,
     1804                             0,
     1805                             0,
     1806                             0,
     1807                             0,
     1808                             0,
     1809                             (UInt_t)mcevth.get_CORSIKA(),
     1810                             (UInt_t)mcevth.get_AtmAbs(),
     1811                             (UInt_t)mcevth.get_MirrAbs()+mcevth.get_OutOfMirr()+mcevth.get_BlackSpot(),
     1812                             (UInt_t) ncph,
     1813                             (UInt_t) inumphe,
     1814                             (UInt_t) inumphensb+inumphe);
     1815              }
     1816              else{
     1817                Float_t Nmax, t0, tmax, a, b, c, chi2;
     1818                mcevth.get_times(&ftime, &ltime);
     1819                chi2=mcevth_2.get_NKGfit(&Nmax, &t0, &tmax, &a, &b, &c);
     1820                McEvt->Fill( mcevth_2.get_evt_number(),
     1821                             (UShort_t) mcevth_2.get_primary() ,
     1822                             mcevth_2.get_energy(),
     1823                             mcevth_2.get_thick0(),
     1824                             mcevth_2.get_first_target(),
     1825                             mcevth_2.get_z_first_int(),
     1826                             mcevth_2.get_theta(),
     1827                             mcevth_2.get_phi(),
     1828                             mcevth_2.get_core(),
     1829                             mcevth_2.get_coreX(),
     1830                             mcevth_2.get_coreY(),
     1831                             impactD,
     1832                             mcevth_2.get_theta_CT(),
     1833                             mcevth_2.get_phi_CT(),
     1834                             ftime,
     1835                             ltime,
     1836                             Nmax,
     1837                             t0,
     1838                             tmax,
     1839                             a,
     1840                             b,
     1841                             c,
     1842                             chi2,
     1843                             (UInt_t)mcevth_2.get_CORSIKA(),
     1844                             (UInt_t)mcevth_2.get_AtmAbs(),
     1845                             (UInt_t)mcevth_2.get_MirrAbs()+mcevth_2.get_OutOfMirr()+mcevth_2.get_BlackSpot(),
     1846                             (UInt_t) ncph,
     1847                             (UInt_t) inumphe,
     1848                             (UInt_t) inumphensb+inumphe);
     1849              }
     1850            }
    17611851            //   We don not count photons out of the camera.   
    17621852           
     
    18331923      if( !isA( flag, FLAG_END_OF_RUN   )){
    18341924        error( SIGNATURE, "Expected end of run flag, but found: %s\n", flag );
     1925        break;
    18351926      }
    18361927      else { // found end of run
     
    18431934          log(SIGNATURE, "End of file . . .\n");
    18441935          still_in_loop  = FALSE;
    1845  
     1936          log(SIGNATURE, "Reading ASCII files at the end of the reflector file.  . .\n");
     1937          read_ascii(inputfile);
     1938          break;
    18461939          if ((! Data_From_STDIN) && ( !feof(inputfile) )){
    18471940           
     
    18501943
    18511944            if((reflector_file_version=check_reflector_file( inputfile ))==FALSE){
    1852               exit(1);
     1945              // exit(1);
     1946              log(SIGNATURE, "Next file is not recognised as a reflector file.\n");
     1947              log(SIGNATURE, "Stopping ...\n");
     1948              break;
    18531949            }
    18541950           
     
    19162012                    mcevth.get_CWaveUpper(),
    19172013                    mcevth.get_slope(),
    1918                     mcevth.get_NumObsLev(),
     2014                    1,
    19192015                    heights,
    19202016                    corsika,
     
    19222018                    (UInt_t)(VERSION*100),
    19232019                    0);
    1924  
     2020
    19252021  //  Fill the Header Tree with the current leaves of each branch
    19262022  HeaderTree.Fill() ;
     
    27252821//!@}
    27262822
     2823//!-----------------------------------------------------------
     2824// @name read_ascii 
     2825//                         
     2826// @desc read ascii configuration files used by the reflector
     2827//
     2828// @date tue dec 10 17:14:10 CET 2002
     2829//------------------------------------------------------------
     2830// @function
     2831
     2832//!@{
     2833void
     2834read_ascii(FILE *sp)
     2835{
     2836  cout<<"To be implemented..."<<endl;
     2837}
    27272838
    27282839//!-----------------------------------------------------------
     
    36843795//
    36853796// $Log: not supported by cvs2svn $
     3797// Revision 1.46  2002/11/08 17:51:00  blanch
     3798// *** empty log message ***
     3799//
    36863800// Revision 1.45  2002/10/29 17:15:27  blanch
    36873801// Reading several reflector versions.
     
    38233937//
    38243938// $Log: not supported by cvs2svn $
     3939// Revision 1.46  2002/11/08 17:51:00  blanch
     3940// *** empty log message ***
     3941//
    38253942// Revision 1.45  2002/10/29 17:15:27  blanch
    38263943// Reading several reflector versions.
  • trunk/MagicSoft/Simulation/Detector/Camera/camera.h

    r1560 r1674  
    1919//=
    2020//= $RCSfile: camera.h,v $
    21 //= $Revision: 1.12 $
     21//= $Revision: 1.13 $
    2222//= $Author: blanch $
    23 //= $Date: 2002-10-29 17:16:28 $
     23//= $Date: 2002-12-10 17:20:32 $
    2424//=
    2525//=//////////////////////////////////////////////////////////////////////
     
    6262#include "moments.h"
    6363
     64#include "MCRunHeader.hxx"
    6465#include "MCEventHeader.hxx"
    6566#include "MCEventHeader_2.hxx"
     
    281282void read_QE(void);
    282283void read_WC(void);
     284void read_ascii( FILE *sp // the input file
     285                 );
    283286int pixels_are_neig(int pix1, int pix2);
    284287int bpoint_is_in_pix(double dx, double dy, int ipixnum,
     
    330333/*
    331334 *$Log: not supported by cvs2svn $
     335 *Revision 1.12  2002/10/29 17:16:28  blanch
     336 *Header file for camera.cxx version 1.45
     337 *
    332338 *Revision 1.11  2002/10/18 16:53:30  blanch
    333339 *Modification to read several reflector version files.
  • trunk/MagicSoft/Simulation/Detector/include-MC/MCCphoton.hxx

    r735 r1674  
    4343
    4444const char FLAG_START_OF_RUN[]   = "\nSTART---RUN\n";
     45const char FLAG_START_OF_HEADER[]   = "RUNH";
    4546const char FLAG_START_OF_EVENT[] = "\nSTART-EVENT\n";
     47const char FLAG_EVENT_HEADER[]   = "EVTH";
    4648const char FLAG_END_OF_EVENT[] =   "\nEND---EVENT\n";
    4749const char FLAG_END_OF_RUN[] =     "\nEND-----RUN\n";
     
    5052
    5153#define SIZE_OF_FLAGS  13
     54#define SIZE_OF_HEADER    8       /* floats */
    5255#define SIZE_OF_MCCPHOTON    8   /* floats */
    5356
  • trunk/MagicSoft/Simulation/Detector/include-MC/MCEventHeader_2.hxx

    r1598 r1674  
    3939#include "COREventHeader.hxx"
    4040
    41 #define SIZE_OF_MCEVENTHEADER_2    178   /* floats */
     41#define SIZE_OF_MCEVENTHEADER_2    181   /* floats */
    4242
    4343// @endcode
Note: See TracChangeset for help on using the changeset viewer.