Changeset 9820 for trunk


Ignore:
Timestamp:
08/10/10 12:24:55 (14 years ago)
Author:
tbretz
Message:
fixed a compiler warning in FillEventIO (conversion from float to int)
Location:
trunk/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/Changelog

    r9626 r9820  
    1919                                                 -*-*- END OF LINE -*-*-
    2020
     21 2010/08/10 Thomas Bretz
     22
     23   * msim/MPhotonData.cc:
     24     - fixed two warnings in FillEventIO (implicit conversion
     25       from float to int)
     26
     27
     28
    2129 2010/08/06 Thomas Bretz
    2230
  • trunk/Mars/msim/MPhotonData.cc

    r9616 r9820  
    254254Int_t MPhotonData::FillEventIO(Float_t f[8])
    255255{
    256     fPosX             =  f[1]; // xpos relative to telescope [cm]
    257     fPosY             = -f[0]; // ypos relative to telescope [cm]
    258     fCosU             =  f[3]; // cos to x
    259     fCosV             = -f[2]; // cos to y
    260     fTime             =  f[4]; // a relative arival time [ns]
    261     fProductionHeight =  f[5]; // altitude of emission [cm]
    262     fNumPhotons       =  f[6]; // photons in this bunch
    263     fWavelength       =  f[7]; // so far always zeor = unspec. [nm]
     256    fPosX             =  f[1];              // xpos relative to telescope [cm]
     257    fPosY             = -f[0];              // ypos relative to telescope [cm]
     258    fCosU             =  f[3];              // cos to x
     259    fCosV             = -f[2];              // cos to y
     260    fTime             =  f[4];              // a relative arival time [ns]
     261    fProductionHeight =  f[5];              // altitude of emission [cm]
     262    fNumPhotons       =  TMath::Nint(f[6]); // photons in this bunch
     263    fWavelength       =  TMath::Nint(f[7]); // so far always zeor = unspec. [nm]
    264264
    265265
Note: See TracChangeset for help on using the changeset viewer.