Changeset 669 for trunk/MagicSoft
- Timestamp:
- 03/02/01 14:25:49 (24 years ago)
- Location:
- trunk/MagicSoft
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r668 r669 1 1 -*-*- END -*-*- 2 2 2000/03/02: Thomas Bretz 3 4 3 5 4 * manalysis/Makefile, mdatacheck/Makefile, meventdisp/Makefile, -
trunk/MagicSoft/Mars/macros/dohtml.C
r590 r669 11 11 12 12 html.SetOutputDir("htmldoc"); 13 html.SetSourceDir(".:mbase:mraw:mgui:m datacheck:meventdisp");13 html.SetSourceDir(".:mbase:mraw:mgui:manalysis:mdatacheck:meventdisp:mmc"); 14 14 15 15 html.MakeAll(kTRUE); -
trunk/MagicSoft/Mars/mars.cc
r464 r669 16 16 // started by h. kornmayer january, 3rd 2001 17 17 18 19 18 int main(int argc, char **argv ) 20 19 { 21 20 // initialise ROOT 22 21 23 TROOT simple(" mars", "MARS - MAGIC analysis and reconstruction software");22 TROOT simple("Mars", "MARS - MAGIC analysis and reconstruction software"); 24 23 25 TApplication theApp(" App", &argc, argv);24 TApplication theApp("MarsApp", &argc, argv); 26 25 27 26 // start the main window -
trunk/MagicSoft/Mars/mgui/GuiIncl.h
r587 r669 9 9 #include <TGSplitter.h> // TGHorizontal3DLine 10 10 #include <TGFSContainer.h> // TGFileContainer 11 #include <TGLabel.h> // TGLabel11 #include <TGLabel.h> // TGLabel 12 12 #include <TGTextEntry.h> 13 13 14 15 14 #endif // __CINT__ -
trunk/MagicSoft/Mars/mgui/MGDataCheckMain.h
r466 r669 33 33 34 34 Char_t fInputFile[256] ; 35 MViewAdcSpectra fViewAdc ; 35 MViewAdcSpectra fViewAdc ; //! 36 36 37 37 // the things for the menu bar -
trunk/MagicSoft/Mars/mgui/MGeomPix.cc
r653 r669 11 11 12 12 13 void MGeomPix::Print( )13 void MGeomPix::Print(Option_t *opt) 14 14 { 15 15 // information about a pixel -
trunk/MagicSoft/Mars/mgui/MGeomPix.h
r653 r669 17 17 MGeomPix(Float_t x=0. , Float_t y=0., Float_t r=0.) ; 18 18 19 void Print( ) ;19 void Print(Option_t *opt=NULL) ; 20 20 21 21 void SetX ( Float_t x ) { fX = x ; } -
trunk/MagicSoft/include-Classes/MMcFormat/MMcEvt.cxx
r619 r669 92 92 93 93 94 void MMcEvt::Clear( ) {94 void MMcEvt::Clear(Option_t *opt) { 95 95 // 96 96 // -
trunk/MagicSoft/include-Classes/MMcFormat/MMcEvt.hxx
r618 r669 42 42 ~MMcEvt(); 43 43 44 void Clear( );44 void Clear(Option_t *opt=NULL); 45 45 46 46 void Fill( UShort_t, -
trunk/MagicSoft/include-Classes/MMcFormat/MMcTrig.cxx
r617 r669 44 44 } 45 45 46 void MMcTrig::Clear( ) {46 void MMcTrig::Clear(Option_t *opt) { 47 47 // 48 48 // -
trunk/MagicSoft/include-Classes/MMcFormat/MMcTrig.hxx
r615 r669 30 30 ~MMcTrig(); 31 31 32 void Clear( );32 void Clear(Option_t *opt=NULL); 33 33 34 34 void Print(Option_t *);
Note:
See TracChangeset
for help on using the changeset viewer.