Changeset 2009


Ignore:
Timestamp:
04/24/03 16:06:08 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/macros/dohtml.C

    r1920 r2009  
    4646    sourcedir += "mgui:";
    4747    sourcedir += "mhist:";
     48    sourcedir += "mhistmc:";
     49    sourcedir += "mimage:";
    4850    sourcedir += "mmain:";
    4951    sourcedir += "mmc:";
     
    8082    html.Convert("starplot.C",      "MARS - Plots data from a STAR-file into a mars histogram");
    8183    html.Convert("testenv.C",       "MARS - Example to use TEnv and Mars Eventloops");
    82     html.Convert("triglvl2.C",       "MARS - Example to use MMcTriggerLvl2 class, using filters and creating histograms");
     84    html.Convert("triglvl2.C",      "MARS - Example to use MMcTriggerLvl2 class, using filters and creating histograms");
     85    html.Convert("status.C",        "MARS - Example to use the online display");
    8386}
  • trunk/MagicSoft/Mars/macros/rootlogon.C

    r2007 r2009  
    100100    gInterpreter->AddIncludePath(dir+"mhist");
    101101    gInterpreter->AddIncludePath(dir+"mhistmc");
     102    gInterpreter->AddIncludePath(dir+"mimage");
    102103    gInterpreter->AddIncludePath(dir+"mmain");
    103104    gInterpreter->AddIncludePath(dir+"mmc");
  • trunk/MagicSoft/Mars/mbase/MEvtLoop.cc

    r1965 r2009  
    368368        gSystem->ProcessEvents();
    369369#else
    370         gClient->ProcessEventsFor(fDisplay ? fDisplay : fProgress);
     370        gClient->ProcessEventsFor(fDisplay ? fDisplay->GetBar() : fProgress);
    371371#endif
    372372    }
  • trunk/MagicSoft/Mars/mfilter/MFEnergySlope.h

    r2008 r2009  
    44//                                                                         //
    55// MFEnergySlope                                                           //
    6 //                                                                         //
    7 // auth. A.stamerra                                                        //
    8 // created 30.01.03                                                        //
    96//                                                                         //
    107/////////////////////////////////////////////////////////////////////////////
     
    2118{
    2219private:
     20    Int_t fNumSelectedEvts; // counter for number of selected events
    2321
    24   Int_t fNumSelectedEvts;
    25   Int_t fErrors[2];
     22    MMcEvt *fEvt;           // Events used to determin energy slope
    2623
    27     MMcEvt *fEvt;
    28     //    MMcCorsikaRunHeader *fMcRunHeader;
     24    Bool_t fResult;         // Result returned by IsExpressionTrue
     25    Float_t fNewSlope;      // New slope set by user
    2926
    30     Bool_t fResult;       
    31     Float_t fNewSlope;     // New slope set by user
     27    Float_t fMcSlope;       // Original energy slope from MC data
     28    Float_t fMcMinEnergy;   // Starting energy of MC data
     29    Float_t fMcMaxEnergy;   // Ending energy of MC data
    3230
    33     Float_t fMcSlope;     // Original energy slope from MC data
    34     Float_t fMcMinEnergy; // Starting energy of MC data
    35     Float_t fMcMaxEnergy; // Ending energy of MC data
    36 
    37     Float_t fN0; // Normalization factor
    38 
    39     //    void Init(const Float_t val,
    40     //          const char *name, const char *title);
     31    Float_t fN0;            // Normalization factor
    4132
    4233    Bool_t PreProcess(MParList *pList);
    4334    Bool_t Process();
    44     Bool_t PostProcess();
    4535
    4636public:
    47 
    48     //    MFEnergySlope(const char *name=NULL, const char *title=NULL);
    49     //    MFEnergySlope();
    5037    MFEnergySlope(const char *name=NULL, const char *title=NULL);
    5138
  • trunk/MagicSoft/Mars/mhist/MHThetabarTime.cc

    r1966 r2009  
    119119// Fill the histogram
    120120//
    121 Bool_t MHThetabarTime::Fill(const MParContainer *par)
     121Bool_t MHThetabarTime::Fill(const MParContainer *par, Double_t w)
    122122{
    123123    const Int_t time = fTime->GetTimeLo();
Note: See TracChangeset for help on using the changeset viewer.