source: trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Parameters_Statistics.h @ 142

Last change on this file since 142 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 970 bytes
Line 
1#ifdef STATISTICS
2#ifndef morpheo_behavioural_Parameters_Statistics_h
3#define morpheo_behavioural_Parameters_Statistics_h
4
5/*
6 * $Id: Parameters_Statistics.h 81 2008-04-15 18:40:01Z rosiere $
7 *
8 * [ Description ]
9 *
10 */
11
12#include "Common/include/Debug.h"
13#include <stdint.h>
14
15namespace morpheo              {
16namespace behavioural          {
17
18  class Parameters_Statistics
19  {
20    // -----[ fields ]----------------------------------------------------
21    // Constant
22  public   : const uint32_t   _nb_cycle_before_begin; // nb cycle before the begining of statistics
23  public   : const uint32_t   _period_save;           // period between two save
24   
25    // -----[ methods ]---------------------------------------------------
26  public   :                  Parameters_Statistics  (uint32_t   nb_cycle_before_begin,
27                                                      uint32_t   period_save          );
28  public   :                  ~Parameters_Statistics ();
29  };
30
31}; // end namespace behavioural         
32}; // end namespace morpheo             
33
34#endif
35#endif
Note: See TracBrowser for help on using the repository browser.