source: trunk/MagicSoft/Mars/mjoptim/MJOptimizeDisp.h@ 7226

Last change on this file since 7226 was 7152, checked in by tbretz, 19 years ago
*** empty log message ***
File size: 525 bytes
Line 
1#ifndef MARS_MJOptimizeDisp
2#define MARS_MJOptimizeDisp
3
4#ifndef MARS_MJOptimize
5#include "MJOptimize.h"
6#endif
7
8class MTask;
9
10class MJOptimizeDisp : public MJOptimize
11{
12public:
13 MJOptimizeDisp() : MJOptimize() { }
14
15 // Special optimizing routines
16 Bool_t RunDisp(const char *fname, const char *rule, MTask *weights=0);
17 Bool_t RunDisp(const char *rule, MTask *weights=0)
18 {
19 return RunDisp(0, rule, weights);
20 }
21
22 ClassDef(MJOptimizeDisp, 0) // Class for optimization of the Supercuts
23};
24
25#endif
Note: See TracBrowser for help on using the repository browser.