Changeset 2683 for trunk/MagicSoft/Mars
- Timestamp:
- 12/16/03 18:21:55 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2682 r2683 4 4 5 5 -*-*- 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 6 13 7 14 2003/12/12: Markus Gaug -
trunk/MagicSoft/Mars/manalysis/MSimulatedAnnealing.cc
r2681 r2683 119 119 #include "MSimulatedAnnealing.h" 120 120 121 #include <T VirtualPad.h>121 #include <TRandom.h> 122 122 123 123 #include "MLog.h" 124 124 #include "MLogManip.h" 125 126 #include "MHSimulatedAnnealing.h" 125 127 126 128 const Float_t MSimulatedAnnealing::gsYtryStr = 10000000; -
trunk/MagicSoft/Mars/manalysis/MSimulatedAnnealing.h
r2681 r2683 1 1 #ifndef MARS_MSimulatedAnnealing 2 2 #define MARS_MSimulatedAnnealing 3 4 #ifndef MARS_MAGIC5 #include "MAGIC.h"6 #endif7 8 #ifndef MARS_MHSimulatedAnnealing9 #include "MHSimulatedAnnealing.h"10 #endif11 12 #ifndef ROOT_TRandom13 #include "TRandom.h"14 #endif15 16 #ifndef ROOT_TVector17 #include "TVector.h"18 #endif19 20 #ifndef ROOT_TMatrix21 #include "TMatrix.h"22 #endif23 3 24 4 #ifndef MARS_MParContainer 25 5 #include "MParContainer.h" 26 6 #endif 7 8 #ifndef ROOT_TMatrix 9 #include <TMatrix.h> 10 #endif 11 12 class MHSimulatedAnnealing; 13 class TRandom; 27 14 28 15 class MSimulatedAnnealing : public MParContainer -
trunk/MagicSoft/Mars/mhist/MHSimulatedAnnealing.cc
r2681 r2683 32 32 /////////////////////////////////////////////////////////////////////// 33 33 #include "MHSimulatedAnnealing.h" 34 35 #include <TMatrix.h> 36 #include <TObjArray.h> 37 38 #include <TStyle.h> 39 #include <TCanvas.h> 40 34 41 #include "MBinning.h" 35 36 #include <TCanvas.h>37 #include <TPad.h>38 #include <TStyle.h>39 42 40 43 ClassImp(MHSimulatedAnnealing); -
trunk/MagicSoft/Mars/mhist/MHSimulatedAnnealing.h
r2681 r2683 1 #ifndef MARS_MHSimulated annealing2 #define MARS_MHSimulated annealing1 #ifndef MARS_MHSimulatedAnnealing 2 #define MARS_MHSimulatedAnnealing 3 3 /////////////////////////////////////////////////////////////////////////////// 4 4 // … … 6 6 // 7 7 // Output container of MSimulatedAnnealing 8 /////////////////////////////////////////////////////////////////////////////// /////////////////////8 /////////////////////////////////////////////////////////////////////////////// 9 9 #ifndef MARS_MH 10 10 #include "MH.h" 11 11 #endif 12 12 13 #ifndef ROOT_TMatrix14 #include "TMatrix.h"15 #endif16 17 #ifndef ROOT_TVector18 #include "TVector.h"19 #endif20 21 13 #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> 31 15 #endif 32 16
Note:
See TracChangeset
for help on using the changeset viewer.