Ignore:
Timestamp:
01/12/01 14:48:35 (24 years ago)
Author:
tbretz
Message:
see Changelog
Location:
trunk/MagicSoft/Mars/mdatacheck
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mdatacheck/MDumpEvtHeader.cc

    r462 r466  
    11#include "MDumpEvtHeader.h"
     2
     3#include "MParList.h"
     4#include "MRawEvtHeader.h"
     5#include "MRawEvtPixelIter.h"
    26
    37//ClassImp(MDumpEvtHeader)
  • trunk/MagicSoft/Mars/mdatacheck/MDumpEvtHeader.h

    r462 r466  
    11#ifndef MDUMPEVTHEADER_H
    22#define MDUMPEVTHEADER_H
     3
     4#ifndef MAGIC_h
     5#include "MAGIC.h"
     6#endif
    37
    48#ifndef MTASK_H
     
    610#endif
    711
    8 #include "MParList.h"
    9 #include <TSystem.h>
    10 
    11 #include "MRawEvtHeader.h"
    12 #include "MRawEvtData.h"
    13 #include "MRawEvtPixelIter.h"
     12class MRawEvtHeader;
     13class MRawEvtData;
     14class MRawEvtPixelIter;
     15class MParList;
    1416
    1517class MDumpEvtHeader : public MTask {
  • trunk/MagicSoft/Mars/mdatacheck/MFillAdcSpect.cc

    r462 r466  
    11#include "MFillAdcSpect.h"
     2
     3#include <iostream.h>
     4
     5#include "MParList.h"
     6#include "MHistosAdc.h"
     7#include "MRawEvtData.h"
     8#include "MRawEvtPixelIter.h"
    29
    310//ClassImp(MFillAdcSpect)
     
    714  *fName  = name  ? name  : "MFillAdcSpect";
    815  *fTitle = title ? title : "Task to fill the adc spectra with  raw data";
    9 
    10 
    1116 
    1217  fRawEvtData   = NULL ;
  • trunk/MagicSoft/Mars/mdatacheck/MFillAdcSpect.h

    r462 r466  
    11#ifndef MFILLADCSPECT_H
    22#define MFILLADCSPECT_H
     3
     4#ifndef MAGIC_H
     5#include "MAGIC.h"
     6#endif
    37
    48#ifndef MTASK_H
     
    610#endif
    711
    8 #include "MParList.h"
    9 #include <TSystem.h>
    10 
    11 #include "MRawEvtHeader.h"
    12 #include "MRawEvtData.h"
    13 #include "MRawEvtPixelIter.h"
    14 #include "MHistosAdc.h"
     12class MParList;
     13class MHistosAdc;
     14class MRawEvtData;
     15class MRawEvtPixelIter;
    1516
    1617class MFillAdcSpect : public MTask {
  • trunk/MagicSoft/Mars/mdatacheck/MGDisplayAdc.cc

    r462 r466  
    1 
    21#include "MGDisplayAdc.h"
     2
     3#include <TGListBox.h>           // TGListBox
     4#include <TGButton.h>            // TGTextButton
     5#include <TGSlider.h>            // TGVSlider
     6#include <TCanvas.h>             // TCanvas.h
     7#include <TGMsgBox.h>            // TGMsgBox
     8#include <TRootEmbeddedCanvas.h> // TRootEmbeddedCanvas
     9
     10#include "MHistosAdc.h"
     11
     12enum ComIdentDisplayAdc {
     13        M_BUTTON_SAVE,
     14                M_BUTTON_PRINT,
     15                M_BUTTON_PRINTALL,
     16                M_BUTTON_CLOSE ,
     17               
     18                M_BUTTON_PREV,
     19                M_BUTTON_NEXT,
     20
     21                M_LIST_HISTO,
     22                M_RADIO_HIGH,
     23                M_RADIO_LOW,
     24                M_RADIO_LH,
     25                M_BUTTON_RESET,
     26                M_VSId1
     27} ;
    328
    429MGDisplayAdc::MGDisplayAdc ( MHistosAdc *Histos,
     
    236261        //
    237262        Int_t   buttons = 4, retval = 0 ;
    238         Char_t  wort[100] ;
    239         Char_t  extens[5] ;
    240         Char_t  command[110] ;
    241        
    242         TGFileItem *item ;     // to process items in the file view container
    243         void *np = NULL ;      // null pointer
     263        //Char_t  wort[100] ;
     264        //Char_t  extens[5] ;
     265        //Char_t  command[110] ;
     266       
     267        //TGFileItem *item ;     // to process items in the file view container
     268        //void *np = NULL ;      // null pointer
    244269       
    245270        switch (GET_MSG(msg))
  • trunk/MagicSoft/Mars/mdatacheck/MGDisplayAdc.h

    r462 r466  
    22#define MGDISPLAYADC_H
    33
    4 #include <iostream.h>
    5 #include <TROOT.h>
    6 #include <TApplication.h>
    7 #include <TSystem.h>
    8 #include <TGClient.h>
    9 #include <TGButton.h>
    10 #include <TGMenu.h>
    11 #include <TGTab.h>
    12 #include <TGListBox.h>
    13 #include <TGPicture.h>
    14 #include <TRootEmbeddedCanvas.h>
    15 #include <TCanvas.h>
    16 #include <TGFSContainer.h>
    17 #include <TGMsgBox.h>
    18 #include <TVirtualX.h>
    19 #include <TGFrame.h>
    20 #include <TGTextEntry.h>
    21 #include <TGSlider.h>
    22 #include <TGDoubleSlider.h>
    23 #include <TGScrollBar.h>
    24 #include <TSlider.h>
     4#ifndef ROOT_TFrame
     5#include <TGFrame.h> // TGTransientFrame
     6#endif
    257
    26 
    27 #include <TVirtualX.h>
    28 #include <TGClient.h>   
    29    
    30 #include "MHistosAdc.h"
    31        
    32     class MHistosAdc;
    33 
    34 
    35 
    36 enum ComIdentDisplayAdc {
    37         M_BUTTON_SAVE,
    38                 M_BUTTON_PRINT,
    39                 M_BUTTON_PRINTALL,
    40                 M_BUTTON_CLOSE ,
    41                
    42                 M_BUTTON_PREV,
    43                 M_BUTTON_NEXT,
    44 
    45                 M_LIST_HISTO,
    46                 M_RADIO_HIGH,
    47                 M_RADIO_LOW,
    48                 M_RADIO_LH,
    49                 M_BUTTON_RESET,
    50                 M_VSId1
    51 } ;
     8class MHistosAdc;
     9class TGListBox;
     10class TGTextButton;
     11class TRootEmbeddedCanvas;
     12class TCanvas;
     13class TGVSlider;
     14class TGRadioButton;
    5215
    5316class MGDisplayAdc : public TGTransientFrame {
  • trunk/MagicSoft/Mars/mdatacheck/MHistosAdc.h

    r462 r466  
    22#define MHISTOSADC_H
    33
     4#ifndef MAGIC_H
    45#include "MAGIC.h"
     6#endif
    57
     8#ifndef ROOT_TObjArray
    69#include <TObjArray.h>
     10#endif
    711
     12#ifndef MPARCONTAINER_H
    813#include "MParContainer.h"
     14#endif
    915
    1016class MHistosAdc : public MParContainer
  • trunk/MagicSoft/Mars/mdatacheck/MShowSpect.cc

    r462 r466  
    11#include "MShowSpect.h"
    22
    3 #include <stdlib.h>
    4 
    5 #include <TROOT.h>
    6 #include <TApplication.h>
    7 #include <TSystem.h>
    8 #include <TGClient.h>
    9 #include <TGFileDialog.h>
    10 #include <TVirtualX.h>
    11 
    12 #include "MParList.h"
    13 #include "MHistosAdc.h"
     3#include "MParList.h"      // MParList
     4#include "MGDisplayAdc.h"  // MGDisplayAdc
    145
    156
  • trunk/MagicSoft/Mars/mdatacheck/MShowSpect.h

    r462 r466  
    22#define MSHOWSPECT_H
    33
     4#ifndef MAGIC_H
    45#include "MAGIC.h"
     6#endif
    57
     8#ifndef MTASK_H
    69#include "MTask.h"
    7 #include "MGDisplayAdc.h"
     10#endif
    811
    9 class MGDisplayAdc ;
    10 
     12class MGDisplayAdc;
    1113class MHistosAdc;
    12 class MHistosTdc;
    1314class MParList ;
    1415
Note: See TracChangeset for help on using the changeset viewer.