Changeset 2009
- Timestamp:
- 04/24/03 16:06:08 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/macros/dohtml.C
r1920 r2009 46 46 sourcedir += "mgui:"; 47 47 sourcedir += "mhist:"; 48 sourcedir += "mhistmc:"; 49 sourcedir += "mimage:"; 48 50 sourcedir += "mmain:"; 49 51 sourcedir += "mmc:"; … … 80 82 html.Convert("starplot.C", "MARS - Plots data from a STAR-file into a mars histogram"); 81 83 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"); 83 86 } -
trunk/MagicSoft/Mars/macros/rootlogon.C
r2007 r2009 100 100 gInterpreter->AddIncludePath(dir+"mhist"); 101 101 gInterpreter->AddIncludePath(dir+"mhistmc"); 102 gInterpreter->AddIncludePath(dir+"mimage"); 102 103 gInterpreter->AddIncludePath(dir+"mmain"); 103 104 gInterpreter->AddIncludePath(dir+"mmc"); -
trunk/MagicSoft/Mars/mbase/MEvtLoop.cc
r1965 r2009 368 368 gSystem->ProcessEvents(); 369 369 #else 370 gClient->ProcessEventsFor(fDisplay ? fDisplay : fProgress);370 gClient->ProcessEventsFor(fDisplay ? fDisplay->GetBar() : fProgress); 371 371 #endif 372 372 } -
trunk/MagicSoft/Mars/mfilter/MFEnergySlope.h
r2008 r2009 4 4 // // 5 5 // MFEnergySlope // 6 // //7 // auth. A.stamerra //8 // created 30.01.03 //9 6 // // 10 7 ///////////////////////////////////////////////////////////////////////////// … … 21 18 { 22 19 private: 20 Int_t fNumSelectedEvts; // counter for number of selected events 23 21 24 Int_t fNumSelectedEvts; 25 Int_t fErrors[2]; 22 MMcEvt *fEvt; // Events used to determin energy slope 26 23 27 MMcEvt *fEvt;28 // MMcCorsikaRunHeader *fMcRunHeader;24 Bool_t fResult; // Result returned by IsExpressionTrue 25 Float_t fNewSlope; // New slope set by user 29 26 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 32 30 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 41 32 42 33 Bool_t PreProcess(MParList *pList); 43 34 Bool_t Process(); 44 Bool_t PostProcess();45 35 46 36 public: 47 48 // MFEnergySlope(const char *name=NULL, const char *title=NULL);49 // MFEnergySlope();50 37 MFEnergySlope(const char *name=NULL, const char *title=NULL); 51 38 -
trunk/MagicSoft/Mars/mhist/MHThetabarTime.cc
r1966 r2009 119 119 // Fill the histogram 120 120 // 121 Bool_t MHThetabarTime::Fill(const MParContainer *par )121 Bool_t MHThetabarTime::Fill(const MParContainer *par, Double_t w) 122 122 { 123 123 const Int_t time = fTime->GetTimeLo();
Note:
See TracChangeset
for help on using the changeset viewer.