/* ======================================================================== *\ ! ! * ! * This file is part of CheObs, the Modular Analysis and Reconstruction ! * Software. It is distributed to you in the hope that it can be a useful ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes. ! * It is distributed WITHOUT ANY WARRANTY. ! * ! * Permission to use, copy, modify and distribute this software and its ! * documentation for any purpose is hereby granted without fee, ! * provided that the above copyright notice appears in all copies and ! * that both that copyright notice and this permission notice appear ! * in supporting documentation. It is provided "as is" without express ! * or implied warranty. ! * ! ! ! Author(s): Thomas Bretz, 12/2000 ! Author(s): Qi Zhe, 06/2007 ! ! Copyright: CheObs Software Development, 2000-2010 ! ! \* ======================================================================== */ ///////////////////////////////////////////////////////////////////////////// // // MPhotonData // // Storage container to store Corsika events // // For details on the coordinate systems see our Wiki. // // Version 1: // ---------- // * First implementation // // Version 2: // ---------- // - fNumPhotons // ///////////////////////////////////////////////////////////////////////////// #include "MPhotonData.h" #include #include #include #include #include "MLog.h" #include "MLogManip.h" ClassImp(MPhotonData); using namespace std; // -------------------------------------------------------------------------- // // Default constructor. // MPhotonData::MPhotonData(/*const char *name, const char *title*/) : fPosX(0), fPosY(0), fCosU(0), fCosV(0), fTime(0), fWavelength(0), /*fNumPhotons(1),*/ fProductionHeight(0), fPrimary(MMcEvtBasic::kUNDEFINED), fTag(-1), fMirrorTag(-1), fWeight(1) { // fName = name ? name : "MPhotonData"; // fTitle = title ? title : "Corsika Event Data Information"; } /* MPhotonData::MPhotonData(const MPhotonData &ph) : fPosX(ph.fPosX), fPosY(ph.fPosY), fCosU(ph.fCosU), fCosV(ph.fCosV), fTime(ph.fTime), fWavelength(ph.fWavelength), fNumPhotons(ph.fNumPhotons), fProductionHeight(ph.fProductionHeight), fPrimary(ph.fPrimary), fTag(ph.fTag), fWeight(ph.fWeight) { } */ // -------------------------------------------------------------------------- // // Copy function. Copy all data members into obj. // void MPhotonData::Copy(TObject &obj) const { MPhotonData &d = static_cast(obj); // d.fNumPhotons = fNumPhotons; d.fPosX = fPosX; d.fPosY = fPosY; d.fCosU = fCosU; d.fCosV = fCosV; d.fWavelength = fWavelength; d.fPrimary = fPrimary; d.fTime = fTime; d.fTag = fTag; d.fWeight = fWeight; d.fProductionHeight = fProductionHeight; TObject::Copy(obj); } // -------------------------------------------------------------------------- // // Return the square cosine of the Theta-angle == 1-CosU^2-CosV^2 // Double_t MPhotonData::GetCosW2() const { return 1 - GetSinW2(); } // -------------------------------------------------------------------------- // // Return the square sine of the Theta-angle == CosU^2+CosV^2 // Double_t MPhotonData::GetSinW2() const { const Double_t sinw2 = fCosU*fCosU + fCosV*fCosV; return sinw2>1 ? 1 : sinw2; } // -------------------------------------------------------------------------- // // return the cosine of the Theta-angle == sqrt(1-CosU^2-CosV^2) // Double_t MPhotonData::GetCosW() const { return TMath::Sqrt(GetCosW2()); } // -------------------------------------------------------------------------- // // return the sine of the Theta-angle == sqrt(CosU^2+CosV^2) // Double_t MPhotonData::GetSinW() const { return TMath::Sqrt(GetSinW2()); } // -------------------------------------------------------------------------- // // Return the theta angle in radians // Double_t MPhotonData::GetTheta() const { return TMath::ASin(GetSinW()); } // -------------------------------------------------------------------------- // // Return a TQuaternion with the first three components x, y, and z // and the fourth component the time. // TQuaternion MPhotonData::GetPosQ() const { return TQuaternion(GetPos3(), fTime); } // -------------------------------------------------------------------------- // // return a TQuaternion with the first three components the direction // moving in space (GetDir3()) and the fourth component is the // one devided by the speed of light (converted to cm/ns) // // FIXME: v in air! // TQuaternion MPhotonData::GetDirQ() const { return TQuaternion(GetDir3(), 1./(TMath::C()*100/1e9)); } // -------------------------------------------------------------------------- // // Set the wavelength to a random lambda^-2 distributed value // between wmin and wmax. // void MPhotonData::SimWavelength(Float_t wmin, Float_t wmax) { const Double_t w = gRandom->Uniform(wmin, wmax); fWavelength = TMath::Nint(wmin*wmax / w); } // -------------------------------------------------------------------------- // // Set the data member according to the 8 floats read from a reflector-file. // This function MUST reset all data-members, no matter whether these are // contained in the input stream. // Int_t MPhotonData::FillRfl(const Float_t f[8]) { // Check coordinate system!!!! fWavelength = TMath::Nint(f[0]); fPosX = f[1]; // [cm] fPosY = f[2]; // [cm] fCosU = f[3]; // cos to x fCosV = f[4]; // cos to y fTime = f[5]; // [ns] fProductionHeight = f[6]; // f[7]: Camera inclination angle fPrimary = MMcEvtBasic::kUNDEFINED; // fNumPhotons = 1; fTag = -1; fWeight = 1; return kTRUE; } // -------------------------------------------------------------------------- // // Set the data member according to the 7 floats read from a corsika-file. // This function MUST reset all data-members, no matter whether these are // contained in the input stream. // // Currently we exchange x and y and set y=-y to convert Corsikas coordinate // system intpo our own. // Int_t MPhotonData::FillCorsika(const Float_t f[7], Int_t i) { // From the Corsika manual: // // f[0] : n Number of Cherenkov photons in bunch // (For THIN option multiplied with thinning weight) // f[1] : x [cm] // f[2] : y [cm] // f[3] : u direction cosine (to x axis) [u = sin(theta)cos(phi)] // f[4] : v direction cosine (to y axis) [v = sin(theta)sin(phi)] // f[5] : t [ns] time to first interaction or since start of atmosphere (see TSTART) // f[6] : h [ch] bunch production height (except MCERFI=3) // f[7] : w weight of bunch [only with THIN option] // f[0] = MCERFI==1/2/3 && !THIN ? PHOTCM : PHOTCM*WTCER/MAX(1e-10, PROBTH) // f[1] = XCER // f[2] = YXCER // f[3] = UEMIS // f[4] = VEMIS // f[5] = CARTIM // f[6] = MCERFI<3 ? ZEMIS : CERDIST // #if __THIN__ // f[7] = MCERFI==1 ? WTCER/MAX(1e-10, PROBTH) : (CEFFIC || CERWLEN ? WL*WLFLAG : WLFLAG); // #endif // // WLFLAG = [CEFFIC=-1] [CERWLEN=1] [ELSE=0] // // WL = 1./(1./WAVLGU+(1./WAVLGL-1./WAVLGU)*RDM(IRDM)) // // WL-MIN = 1./(1./WAVLGU+(1./WAVLGL-1./WAVLGU)*0) = WAVLGU // WL-MAX = 1./(1./WAVLGU+(1./WAVLGL-1./WAVLGU)*1) = WAVLGL // //const UInt_t n /*fWeight*/ = TMath::Nint(f[0]); // Empty bunch (this happend at the end of events when // the remaining block is filled with zeroes) if (f[0]==0) return kCONTINUE; // My understanding is that each photon internally gets a weight (e.g. lambda^-2) // and according to this weight a dice is thrown. The weights are still written // to the output file but only for the surviving photons if (f[0]>1) cout << "MPhotonData::FillCorsika: WARNING - Bunch size > 1 (" << f[0] << ")" <=0) { const Int_t reuse = (n/1000)%100; // Force this to be 1! if (reuse!=i) { cout << "REUSE " << reuse << " " << i << " " << n << endl; return kCONTINUE; } } // This seems to be special to mmcs fWavelength = n%1000; fPrimary = MMcEvtBasic::ParticleId_t(n/100000); #else fWavelength = 0; fPrimary = MMcEvtBasic::kUNDEFINED; #endif // x=north, y=west //fPosX = f[1]; // [cm] //fPosY = f[2]; // [cm] //fCosU = f[3]; // cos to x //fCosV = f[4]; // cos to y // x=west, y=south fPosX = f[2]; // [cm] fPosY = -f[1]; // [cm] fCosU = f[4]; // cos to x fCosV = -f[3]; // cos to y fTime = f[5]; // [ns] fProductionHeight = f[6]; // [cm] // Now reset all data members which are not in the stream fTag = -1; fWeight = 1; return kTRUE; } Int_t MPhotonData::FillCorsikaThin(const Float_t f[8], Int_t i) { // DATAB2(LHCER(IBUF)+1,IBUF) = PHOTCM*WTCER/MAX(1.D-10,PROBTH) // For the THIN option the photon bunch size is multiplied with the // thinning weight. See Sect. 4.89 page 99. /* #if __THIN__ C (CONTAINING UP TO 39 BUNCHES, 8 WORDS EACH) C C 8*(N-1)+1 NUMBER OF PHOTONS IN BUNCH C (FOR STANDARD PARTICLE OUTPUT FILE: C 99.E5 + NINT(NUMBER OF PHOTONS IN BUNCH)*10 + 1 C 8*(N-1)+2 X- COORDINATE IN CM C 8*(N-1)+3 Y- COORDINATE IN CM C 8*(N-1)+4 DIRECTION COSINUS TO X AXIS C 8*(N-1)+5 DIRECTION COSINUS TO Y AXIS C 8*(N-1)+6 T TIME SINCE FIRST INTERACTION (OR ENTRANCE INTO C ATMOSPHERE) IN NSEC C 8*(N-1)+7 PRODUCTION HEIGHT OF BUNCH IN CM C 8*(N-1)+8 WEIGHT OF BUNCH #else */ // From the Corsika manual: // // f[0] : n Number of Cherenkov photons in bunch // (For THIN option multiplied with thinning weight) // f[1] : x [cm] // f[2] : y [cm] // f[3] : u direction cosine (to x axis) [u = sin(theta)cos(phi)] // f[4] : v direction cosine (to y axis) [v = sin(theta)sin(phi)] // f[5] : t [ns] time to first interaction or since start of atmosphere (see TSTART) // f[6] : h [ch] bunch production height (except MCERFI=3) // f[7] : w weight of bunch [only with THIN option] // f[0] = MCERFI==1/2/3 && !THIN ? PHOTCM : PHOTCM*WTCER/MAX(1e-10, PROBTH) // f[1] = XCER // f[2] = YXCER // f[3] = UEMIS // f[4] = VEMIS // f[5] = CARTIM // f[6] = MCERFI<3 ? ZEMIS : CERDIST // #if __THIN__ // f[7] = MCERFI==1 ? WTCER/MAX(1e-10, PROBTH) : (CEFFIC || CERWLEN ? WL*WLFLAG : WLFLAG); // #endif // // WLFLAG = [CEFFIC=-1] [CERWLEN=1] [ELSE=0] // // WL = 1./(1./WAVLGU+(1./WAVLGL-1./WAVLGU)*RDM(IRDM)) // // WL-MIN = 1./(1./WAVLGU+(1./WAVLGL-1./WAVLGU)*0) = WAVLGU // WL-MAX = 1./(1./WAVLGU+(1./WAVLGL-1./WAVLGU)*1) = WAVLGL // //const UInt_t n /*fWeight*/ = TMath::Nint(f[0]); // Empty bunch (this happend at the end of events when // the remaining block is filled with zeroes) if (f[0]==0) return kCONTINUE; // My understanding is that each photon internally gets a weight (e.g. lambda^-2) // and according to this weight a dice is thrown. The weights are still written // to the output file but only for the surviving photons if (f[0]>1) cout << "MPhotonData::FillCorsikaThin: WARNING - Bunch size > 1 (" << f[0] << ")" <0: __CERWLEN__ (but __CEFFIC takes priority) fWavelength = TMath::Abs(f[7]); // Now reset all data members which are not in the stream fPrimary = MMcEvtBasic::kUNDEFINED; fTag = -1; fWeight = 1; return kTRUE; } // -------------------------------------------------------------------------- // // Set the data member according to the 8 shorts read from a eventio-file. // This function MUST reset all data-members, no matter whether these are // contained in the input stream. // // Currently we exchange x and y and set y=-y to convert Corsikas coordinate // system into our own. // Int_t MPhotonData::FillEventIO(const Short_t f[8]) { // From 5.5 compact_bunch: // https://www.mpi-hd.mpg.de/hfm/~bernlohr/iact-atmo/iact_refman.pdf // photons in this bunch f[6]/100. fPosY = -f[0]/10.; // ypos relative to telescope [cm] fPosX = f[1]/10.; // xpos relative to telescope [cm] fCosV = -f[2]/30000.; // cos to y fCosU = f[3]/30000.; // cos to x fTime = f[4]/10.; // a relative arival time [ns] fProductionHeight = pow(10, f[5]/1000.); // altitude of emission a.s.l. [cm] fWavelength = TMath::Abs(f[7]); // wavelength [nm]: 0 undetermined, <0 already in p.e. // Now reset all data members which are not in the stream fPrimary = MMcEvtBasic::kUNDEFINED; fTag = -1; fWeight = 1; return 1; } // -------------------------------------------------------------------------- // // Set the data member according to the 8 floats read from a eventio-file. // This function MUST reset all data-members, no matter whether these are // contained in the input stream. // // Currently we exchange x and y and set y=-y to convert Corsikas coordinate // system into our own. // Int_t MPhotonData::FillEventIO(const Float_t f[8]) { // photons in this bunch const UInt_t n = TMath::Nint(f[6]); if (n==0) return 0; fPosX = f[1]; // xpos relative to telescope [cm] fPosY = -f[0]; // ypos relative to telescope [cm] fCosU = f[3]; // cos to x fCosV = -f[2]; // cos to y //fTime = f[4]; // a relative arival time [ns] //fProductionHeight = f[5]; // altitude of emission [cm] fWavelength = 0; // so far always zeor = unspec. [nm] // Now reset all data members which are not in the stream fPrimary = MMcEvtBasic::kUNDEFINED; fTag = -1; fWeight = 1; return n-1; } /* // -------------------------------------------------------------------------- // // Read seven floats from the stream and call FillCorsika for them. // Int_t MPhotonData::ReadCorsikaEvt(istream &fin) { Float_t f[7]; fin.read((char*)&f, 7*4); const Int_t rc = FillCorsika(f); return rc==kTRUE ? !fin.eof() : rc; } // -------------------------------------------------------------------------- // // Read eight floats from the stream and call FillRfl for them. // Int_t MPhotonData::ReadRflEvt(istream &fin) { Float_t f[8]; fin.read((char*)&f, 8*4); const Int_t rc = FillRfl(f); return rc==kTRUE ? !fin.eof() : rc; } */ // -------------------------------------------------------------------------- // // Print contents. The tag and Weight are only printed if they are different // from the default. // void MPhotonData::Print(Option_t *) const { gLog << inf << endl; // gLog << "Num Photons: " << fNumPhotons << " from " << MMcEvtBasic::GetParticleName(fPrimary) << endl; if (fPrimary!=MMcEvtBasic::kUNDEFINED) gLog << "Origin: " << MMcEvtBasic::GetParticleName(fPrimary) << endl; gLog << "Wavelength: " << fWavelength << "nm" << endl; gLog << "Pos X/Y Cos U/V: " << fPosX << "/" << fPosY << " " << fCosU << "/" << fCosV << endl; gLog << "Time/Prod.Height: " << fTime << "ns/" << fProductionHeight/100 << "m" << endl; if (fTag>=0) gLog << "Tag: " << fTag << endl; if (fWeight!=1) gLog << "Weight: " << fWeight << endl; }