Changeset 2683 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
12/16/03 18:21:55 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2682 r2683  
    44
    55                                                 -*-*- END OF LINE -*-*-
     6 2003/12/16: Thomas Bretz
     7
     8   * mhist/MHSimulatedAnnealing.[h,cc],
     9     mhist/MSimulatedAnnealing.[h,cc]:
     10     - fixed includes
     11
     12
    613
    714 2003/12/12: Markus Gaug
  • trunk/MagicSoft/Mars/manalysis/MSimulatedAnnealing.cc

    r2681 r2683  
    119119#include "MSimulatedAnnealing.h"
    120120
    121 #include <TVirtualPad.h>
     121#include <TRandom.h>
    122122
    123123#include "MLog.h"
    124124#include "MLogManip.h"
     125
     126#include "MHSimulatedAnnealing.h"
    125127 
    126128const Float_t MSimulatedAnnealing::gsYtryStr = 10000000; 
  • trunk/MagicSoft/Mars/manalysis/MSimulatedAnnealing.h

    r2681 r2683  
    11#ifndef MARS_MSimulatedAnnealing
    22#define MARS_MSimulatedAnnealing
    3 
    4 #ifndef MARS_MAGIC
    5 #include "MAGIC.h"
    6 #endif
    7 
    8 #ifndef MARS_MHSimulatedAnnealing
    9 #include "MHSimulatedAnnealing.h"
    10 #endif
    11 
    12 #ifndef ROOT_TRandom
    13 #include "TRandom.h" 
    14 #endif
    15 
    16 #ifndef ROOT_TVector
    17 #include "TVector.h"
    18 #endif
    19 
    20 #ifndef ROOT_TMatrix
    21 #include "TMatrix.h"
    22 #endif
    233
    244#ifndef MARS_MParContainer
    255#include "MParContainer.h"
    266#endif
     7
     8#ifndef ROOT_TMatrix
     9#include <TMatrix.h>
     10#endif
     11
     12class MHSimulatedAnnealing;
     13class TRandom;
    2714
    2815class MSimulatedAnnealing : public MParContainer
  • trunk/MagicSoft/Mars/mhist/MHSimulatedAnnealing.cc

    r2681 r2683  
    3232///////////////////////////////////////////////////////////////////////
    3333#include "MHSimulatedAnnealing.h"
     34
     35#include <TMatrix.h>
     36#include <TObjArray.h>
     37
     38#include <TStyle.h>
     39#include <TCanvas.h>
     40
    3441#include "MBinning.h"
    35 
    36 #include <TCanvas.h>
    37 #include <TPad.h>
    38 #include <TStyle.h>
    3942
    4043ClassImp(MHSimulatedAnnealing);
  • trunk/MagicSoft/Mars/mhist/MHSimulatedAnnealing.h

    r2681 r2683  
    1 #ifndef MARS_MHSimulatedannealing
    2 #define MARS_MHSimulatedannealing
     1#ifndef MARS_MHSimulatedAnnealing
     2#define MARS_MHSimulatedAnnealing
    33///////////////////////////////////////////////////////////////////////////////
    44//
     
    66//
    77//  Output container of MSimulatedAnnealing
    8 ////////////////////////////////////////////////////////////////////////////////////////////////////
     8///////////////////////////////////////////////////////////////////////////////
    99#ifndef MARS_MH
    1010#include "MH.h"
    1111#endif
    1212
    13 #ifndef ROOT_TMatrix
    14 #include "TMatrix.h"
    15 #endif
    16 
    17 #ifndef ROOT_TVector
    18 #include "TVector.h"
    19 #endif
    20 
    2113#ifndef ROOT_TH2
    22 #include "TH2.h"
    23 #endif
    24 
    25 #ifndef ROOT_TH1
    26 #include "TH1.h"
    27 #endif
    28 
    29 #ifndef ROOT_TObjarray
    30 #include "TObjArray.h"
     14#include <TH2.h>
    3115#endif
    3216
Note: See TracChangeset for help on using the changeset viewer.