- Timestamp:
- 08/10/10 12:24:55 (14 years ago)
- Location:
- trunk/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/Changelog
r9626 r9820 19 19 -*-*- END OF LINE -*-*- 20 20 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 21 29 2010/08/06 Thomas Bretz 22 30 -
trunk/Mars/msim/MPhotonData.cc
r9616 r9820 254 254 Int_t MPhotonData::FillEventIO(Float_t f[8]) 255 255 { 256 fPosX = f[1]; // xpos relative to telescope [cm]257 fPosY = -f[0]; // ypos relative to telescope [cm]258 fCosU = f[3]; // cos to x259 fCosV = -f[2]; // cos to y260 fTime = f[4]; // a relative arival time [ns]261 fProductionHeight = f[5]; // altitude of emission [cm]262 fNumPhotons = f[6]; // photons in this bunch263 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] 264 264 265 265
Note:
See TracChangeset
for help on using the changeset viewer.