Ignore:
Timestamp:
10/26/01 10:11:30 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/include-Classes/MMcFormat/MMcEvt.hxx

    r883 r991  
    22#define __MMcEvt__
    33
    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
    97
    10 #include <iostream.h>
    11 #include "MParContainer.h"
     8class MMcEvt : public MParContainer
     9{
     10 private:
     11  UShort_t fPartId;         // Type of particle
     12  Float_t  fEnergy;         // Energy in GeV
    1213
     14  Float_t fTheta;           // Theta angle of event
     15  Float_t fPhi;             // Phi angle of event
    1316
    14 class MMcEvt : public MParContainer{
    15  private:
    16   UShort_t fPartId;     // Type of particle
    17   Float_t fEnergy;       // Energy in GeV
     17  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
    1821
    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
    3429
    3530 public:
     
    4944
    5045
    51   void Print(Option_t *);
     46  void Print(Option_t *opt=NULL) const;
    5247
    5348  Short_t GetPartId() const { return fPartId; }       //Get Type of particle
Note: See TracChangeset for help on using the changeset viewer.