Ignore:
Timestamp:
11/19/03 00:03:53 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhist/MHEvent.cc

    r2512 r2529  
    226226        s.Insert(0, txt);
    227227
    228         s += "}{";
    229         s += "  E=";
     228        s += "}{  E=";
     229
    230230        if (fMcEvt->GetEnergy()>1000)
    231231            s += Form("%.1fTeV", fMcEvt->GetEnergy()/1000);
    232232        else
    233             s += Form("%dGeV", fMcEvt->GetEnergy()+.5);
     233            if (fMcEvt->GetEnergy()>10)
     234                s += Form("%dGeV", (Int_t)(fMcEvt->GetEnergy()+.5));
     235            else
     236                if (fMcEvt->GetEnergy()>1)
     237                    s += Form("%.1fGeV", fMcEvt->GetEnergy());
     238                else
     239                    s += Form("%dMeV", (Int_t)(fMcEvt->GetEnergy()*1000+.5));
     240
    234241        s += " r=";
    235242        s += (int)(fMcEvt->GetImpact()/100+.5);
    236         s += "m ZA=";
     243        s += "m Zd=";
    237244        s += (int)(fMcEvt->GetTheta()*180/TMath::Pi()+.5);
    238         s += "\xb0 ";
    239         s += fMcEvt->GetPhotElfromShower();
    240         s += "PhEl";
    241         s += "}";
     245        s += "\\circ ";
     246        if (fMcEvt->GetPhotElfromShower()>=10000)
     247            s += Form("%dk", (Int_t)(fMcEvt->GetPhotElfromShower()/1000.+.5));
     248        else
     249            if (fMcEvt->GetPhotElfromShower()>=1000)
     250                s += Form("%.1fk", fMcEvt->GetPhotElfromShower()/1000.);
     251            else
     252                s += fMcEvt->GetPhotElfromShower();
     253        s += "PhEl}";
    242254    }
    243255
Note: See TracChangeset for help on using the changeset viewer.