Changeset 991 for trunk/MagicSoft/include-Classes/MMcFormat/MMcEvt.hxx
- Timestamp:
- 10/26/01 10:11:30 (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/include-Classes/MMcFormat/MMcEvt.hxx
r883 r991 2 2 #define __MMcEvt__ 3 3 4 #include <stdlib.h> 5 #include <stdio.h> 6 #include <string.h> 7 #include <unistd.h> 8 #include <fcntl.h> 4 #ifndef MPARCONTAINER_H 5 #include "MParContainer.h" 6 #endif 9 7 10 #include <iostream.h> 11 #include "MParContainer.h" 8 class MMcEvt : public MParContainer 9 { 10 private: 11 UShort_t fPartId; // Type of particle 12 Float_t fEnergy; // Energy in GeV 12 13 14 Float_t fTheta; // Theta angle of event 15 Float_t fPhi; // Phi angle of event 13 16 14 class MMcEvt : public MParContainer{ 15 private:16 UShort_t fPartId; // Type of particle17 Float_t f Energy; // Energy in GeV17 Float_t fCoreD; // Core d pos 18 Float_t fCoreX; // Core x pos 19 Float_t fCoreY; // Core y pos 20 Float_t fImpact; // impact parameter 18 21 19 Float_t fTheta; // Theta angle of event 20 Float_t fPhi; // Phi angle of event 21 22 Float_t fCoreD; // Core d pos 23 Float_t fCoreX; // Core x pos 24 Float_t fCoreY; // Core y pos 25 Float_t fImpact; // impact parameter 26 27 UInt_t fPhotIni; // Initial number of photons 28 UInt_t fPassPhotAtm; // Passed atmosphere 29 UInt_t fPassPhotRef; // Passed reflector(reflectivity + effective area) 30 UInt_t fPassPhotCone; // Passed glas 31 UInt_t fPhotElfromShower; // Passed qe coming from the shower 32 UInt_t fPhotElinCamera; // usPhotElfromShower + mean of phe 33 // from NSB 22 UInt_t fPhotIni; // Initial number of photons 23 UInt_t fPassPhotAtm; // Passed atmosphere 24 UInt_t fPassPhotRef; // Passed reflector(reflectivity + effective area) 25 UInt_t fPassPhotCone; // Passed glas 26 UInt_t fPhotElfromShower; // Passed qe coming from the shower 27 UInt_t fPhotElinCamera; // usPhotElfromShower + mean of phe 28 // from NSB 34 29 35 30 public: … … 49 44 50 45 51 void Print(Option_t * );46 void Print(Option_t *opt=NULL) const; 52 47 53 48 Short_t GetPartId() const { return fPartId; } //Get Type of particle
Note:
See TracChangeset
for help on using the changeset viewer.