Ignore:
Timestamp:
10/27/07 21:59:05 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/include-Classes/MMcFormat/MMcEvtBasic.h

    r8315 r8765  
    4949  Float_t GetTelescopeTheta() const { return fTelescopeTheta; }
    5050
    51   TString GetParticleName() const
     51  static TString GetParticleName(Int_t id)
    5252  {
    53       switch (fPartId)
     53      switch (id)
    5454      {
    5555      case kUNDEFINED:return "Undefined";
     
    6767      }
    6868
    69       return Form("Id:%d", fPartId);
     69      return Form("Id:%d", id);
    7070  }
    7171
    72   TString GetParticleSymbol() const
     72  static TString GetParticleSymbol(Int_t id)
    7373  {
    74       switch (fPartId)
     74      switch (id)
    7575      {
    7676      case kUNDEFINED:return "N/A";
     
    8888      }
    8989
    90       return Form("Id:%d", fPartId);
     90      return Form("Id:%d", id);
    9191  }
    9292
     
    103103
    104104      return Form("%dMeV", (Int_t)(e*1000+.5));
     105  }
     106
     107  TString GetParticleSymbol() const
     108  {
     109      return GetParticleSymbol(fPartId);
     110  }
     111
     112  TString GetParticleName() const
     113  {
     114      return GetParticleName(fPartId);
    105115  }
    106116
Note: See TracChangeset for help on using the changeset viewer.