Ignore:
Timestamp:
08/16/06 21:19:42 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/include-Classes/MMcFormat/MMcConfigRunHeader.cc

    r3619 r7880  
    2929// Root storage container for the MONTE CARLO CONFIGURATION information
    3030//
    31 // It saves in a root file all the infromation about values in the configuration
    32 // files used in the Monte Carlo production: MagicDef (definition of the teslescope),
    33 // Reflectivity.dat (mirror reflectivities), qe.dat (PMT QEs), axisdev.dat (mirrors
    34 // deviations) and lightguides.dat (Effect of the Light Guides).
     31// It saves in a root file all the infromation about values in the
     32// configuration files used in the Monte Carlo production: MagicDef
     33// (definition of the teslescope), Reflectivity.dat (mirror reflectivities),
     34// qe.dat (PMT QEs), axisdev.dat (mirrors deviations) and lightguides.dat
     35// (Effect of the Light Guides).
    3536//
    3637//
    37 // Version 2:
    38 // -----------
     38// Class Version 2:
     39// ----------------
    3940// removed obsolete variables which are no longer used by reflector,
    4041// nor present in the magic.def file:  fFocalStdev, fPointStdev, fDevAdjust
    4142//
     43// Class Version 3:
     44// ----------------
     45// Added member fLightCollectionFactorOuter so that we can store
     46// the data on the simulatedlight collection efficiency (light
     47// guides + plexiglas +...) as a function of incidence angle for
     48// outer and inner pixels independently.
     49//
     50// Class Version 4:
     51// ----------------
     52// Added member fMirrorFraction, the "active" fraction of the
     53// mirror dish, to account for reflectivity losses, missing
     54// mirrors, etc.
     55//
     56// Class Version 5:
     57// ----------------
     58// Added member fPmtTimeJitter, the time jitter of the PMTs (sigma
     59// of gaussian) for each photoelectron.
     60//
     61// Class Version 6:
     62// ----------------
     63// Added fParaboloidFocal
     64//
     65/////////////////////////////////////////////////////////////////////////////////
     66
    4267//
    4368////////////////////////////////////////////////////////////////////////////
     
    6792    fTitle = title ? title : "Mc Configuration Information";
    6893
    69     fRadiusMirror=-1;
    70     fFocalDist   =-1;
    71     fPointSpread =-1;
    72     fBlackSpot   =-1;
    73     fCameraWidth =-1;
     94    fRadiusMirror    = -1;
     95    fFocalDist       = -1;
     96    fPointSpread     = -1;
     97    fBlackSpot       = -1;
     98    fCameraWidth     = -1;
     99    fParaboloidFocal = -1;
    74100
    75101    fMirrors = new TClonesArray("MGeomMirror", 0);
     
    93119    fBlackSpot=spot;
    94120    fCameraWidth=camwidth;
    95    
    96121}
    97122
Note: See TracChangeset for help on using the changeset viewer.