Changeset 1361


Ignore:
Timestamp:
06/13/02 08:58:22 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r1355 r1361  
    11                                                                  -*-*- END -*-*-
     2 2002/06/13: Thomas Bretz
     3
     4   * mdata/MData.cc:
     5     - changed ostream.h to ofstream.h to make it compile on alpha
     6
     7
     8
    29 2002/06/10: Thomas Bretz
    310
  • trunk/MagicSoft/Mars/mdata/MData.cc

    r1348 r1361  
    4848#include "MData.h"
    4949
    50 #include <ostream.h>
     50#include <fstream.h>
    5151
    5252ClassImp(MData);
  • trunk/WuerzburgSoft/Thomas/mphys/phys.C

    r1360 r1361  
    116116void DoIt()
    117117{
    118     Double_t R = 100; // [kpc]
    119     Double_t startz = MParticle::ZofR(&R);
    120 
    121     cout << "R = " << R << "kpc" << endl;
     118    //    Double_t R = 1798; // [kpc]
     119    Double_t startz = 0.003; //MParticle::ZofR(&R);
     120
     121    //    cout << "R = " << R << "kpc" << endl;
    122122    cout << "Z = " << startz << endl;
    123123
     
    128128
    129129    Double_t lo = 1e4;
    130     Double_t hi = 1e10;
     130    Double_t hi = 1e11;
    131131    Double_t alpha = -2;
    132132
     
    155155    MBinning binspoly;
    156156    binspolx.SetEdges(16, -180, 180);
    157     binspoly.SetEdgesLog(20, 1e-13, 1e-4);
     157    binspoly.SetEdgesLog(20, 1e-10, 1e-3);
    158158    MH::SetBinning(&position, &binspolx, &binspoly);
    159159    MH::SetBinning(&angle,    &binspolx, &binspoly);
     
    321321
    322322                    // WRONG!
    323                     Double_t theta = rand.Uniform(TMath::Pi()*2);
     323                    Double_t theta = rand.Uniform(TMath::Pi()/2)+TMath::Pi()*3/4;
    324324                    MPhoton *p = e->DoInvCompton(theta);
    325325
     
    339339
    340340                    if (fabs(e->GetTheta()*3437)<1 &&  // < 1min
    341                         e->GetEnergy()>lo*2)
     341                        e->GetEnergy()>lo          &&
     342                        e->GetEnergy()>3e4)
    342343                        continue;
    343344
Note: See TracChangeset for help on using the changeset viewer.