Sophie

Sophie

distrib > Fedora > 13 > i386 > by-pkgid > eebc325dc36bd6e3b09b9b45133e42f8 > files > 895

HippoDraw-devel-docs-1.21.1-10.fc13.i686.rpm

<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>HippoDraw Class Library</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="hippoApp.ico">
</head><body>
<!-- Generated by Doxygen 1.6.2 -->
<div class="navigation" id="top">
  <div class="tabs">
    <ul>
      <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
      <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li><a href="annotated.html"><span>Classes</span></a></li>
      <li class="current"><a href="files.html"><span>Files</span></a></li>
      <li><a href="dirs.html"><span>Directories</span></a></li>
    </ul>
  </div>
  <div class="tabs">
    <ul>
      <li><a href="files.html"><span>File&nbsp;List</span></a></li>
      <li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
    </ul>
  </div>
  <div class="navpath"><a class="el" href="dir_390cfd4b32d48f53301526c593d2b8f8.html">datareps</a>
  </div>
</div>
<div class="contents">
<h1>DyHistogramEqualEntries.cxx</h1><a href="DyHistogramEqualEntries_8cxx.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 
<a name="l00012"></a>00012 <span class="comment">// for truncation warning in debug mode</span>
<a name="l00013"></a>00013 <span class="preprocessor">#ifdef _MSC_VER</span>
<a name="l00014"></a>00014 <span class="preprocessor"></span><span class="preprocessor">#include &quot;msdevstudio/MSconfig.h&quot;</span>
<a name="l00015"></a>00015 <span class="preprocessor">#endif</span>
<a name="l00016"></a>00016 <span class="preprocessor"></span>
<a name="l00017"></a>00017 <span class="preprocessor">#include &quot;<a class="code" href="DyHistogramEqualEntries_8h.html" title="hippodraw::DyHistogramEqualEntries class interface.">DyHistogramEqualEntries.h</a>&quot;</span>
<a name="l00018"></a>00018 
<a name="l00019"></a>00019 <span class="preprocessor">#include &quot;<a class="code" href="EqualEntriesHist1DProjector_8h.html" title="hippodraw;:EqualEntriesHist1Projector class interface">projectors/EqualEntriesHist1DProjector.h</a>&quot;</span>
<a name="l00020"></a>00020 <span class="preprocessor">#include &quot;<a class="code" href="ColumnPointRep_8h.html" title="hippodraw::ColumnPointRep class interface">reps/ColumnPointRep.h</a>&quot;</span>
<a name="l00021"></a>00021 
<a name="l00022"></a>00022 <span class="comment">// using namespace hippodraw;</span>
<a name="l00023"></a>00023 <span class="keyword">namespace </span>hippodraw {
<a name="l00024"></a>00024 
<a name="l00025"></a><a class="code" href="classhippodraw_1_1DyHistogramEqualEntries.html#a863d886f5e9020c9ad51ae1fece3bb2b">00025</a> <a class="code" href="classhippodraw_1_1DyHistogramEqualEntries.html#a863d886f5e9020c9ad51ae1fece3bb2b" title="The default constructor.">DyHistogramEqualEntries::DyHistogramEqualEntries</a> ( )
<a name="l00026"></a>00026   : <a class="code" href="classhippodraw_1_1DataRep.html" title="The base class for data representations.">DataRep</a> ()
<a name="l00027"></a>00027 {
<a name="l00028"></a>00028   <a class="code" href="classhippodraw_1_1DataRep.html#adb41893ba19e889e56c559f25fc1a68a" title="The name of the display as it might be displayed in a GUI.">m_name</a> = <span class="stringliteral">&quot;Histogram (EqualEntries)&quot;</span>;
<a name="l00029"></a>00029 
<a name="l00030"></a>00030   <a class="code" href="classhippodraw_1_1DataRep.html#aa7c0d96e4919970f6e1823693f5cdc27" title="A projector used to transform data to projected values that will be plotted.">m_projector</a> = <span class="keyword">new</span> <a class="code" href="classhippodraw_1_1EqualEntriesHist1DProjector.html" title="A derived class of NTupleProjector that projects a column of data into a one dimensional...">EqualEntriesHist1DProjector</a>( );
<a name="l00031"></a>00031   <a class="code" href="classhippodraw_1_1DataRep.html#a4a95e3eb102edf27f2493407c711908d" title="The representation used for drawing each data point in the view.">m_rep</a> = <span class="keyword">new</span> <a class="code" href="classhippodraw_1_1ColumnPointRep.html" title="A PointRep class that draws a column to represent the value.">ColumnPointRep</a>();
<a name="l00032"></a>00032 }
<a name="l00033"></a>00033 
<a name="l00034"></a><a class="code" href="classhippodraw_1_1DyHistogramEqualEntries.html#a9c1ed0172b026722ac23a85d45862cd2">00034</a> <a class="code" href="classhippodraw_1_1DataRep.html" title="The base class for data representations.">DataRep</a> * <a class="code" href="classhippodraw_1_1DyHistogramEqualEntries.html#a9c1ed0172b026722ac23a85d45862cd2" title="The clone function returns an object of its own kind which is a copy of this object...">DyHistogramEqualEntries::clone</a> ()
<a name="l00035"></a>00035 {
<a name="l00036"></a>00036   <span class="keywordflow">return</span> <span class="keyword">new</span> <a class="code" href="classhippodraw_1_1DyHistogramEqualEntries.html#a863d886f5e9020c9ad51ae1fece3bb2b" title="The default constructor.">DyHistogramEqualEntries</a> ( *<span class="keyword">this</span> );
<a name="l00037"></a>00037 }
<a name="l00038"></a>00038 
<a name="l00039"></a><a class="code" href="classhippodraw_1_1DyHistogramEqualEntries.html#a12f8420575a62be909314e481c74ebd8">00039</a> <span class="keywordtype">bool</span> <a class="code" href="classhippodraw_1_1DyHistogramEqualEntries.html#a12f8420575a62be909314e481c74ebd8" title="Returns true if the DataRep accepts functions on number variables.">DyHistogramEqualEntries::acceptFunction</a> ( <span class="keywordtype">int</span> num )
<a name="l00040"></a>00040 {
<a name="l00041"></a>00041   <span class="keywordflow">return</span> num == 1;
<a name="l00042"></a>00042 }
<a name="l00043"></a>00043 
<a name="l00044"></a>00044 <span class="keywordtype">bool</span>
<a name="l00045"></a>00045 <a class="code" href="classhippodraw_1_1DyHistogramEqualEntries.html#a16e2ab72fa2989c0bc12e5a4fce6baf1" title="Returns true.">DyHistogramEqualEntries::</a>
<a name="l00046"></a><a class="code" href="classhippodraw_1_1DyHistogramEqualEntries.html#a16e2ab72fa2989c0bc12e5a4fce6baf1">00046</a> <a class="code" href="classhippodraw_1_1DyHistogramEqualEntries.html#a16e2ab72fa2989c0bc12e5a4fce6baf1" title="Returns true.">hasErrorDisplay</a> ()<span class="keyword"> const</span>
<a name="l00047"></a>00047 <span class="keyword"></span>{
<a name="l00048"></a>00048   <span class="keywordflow">return</span> <span class="keyword">true</span>;
<a name="l00049"></a>00049 }
<a name="l00050"></a>00050 
<a name="l00051"></a>00051 <span class="keywordtype">void</span>
<a name="l00052"></a>00052 <a class="code" href="classhippodraw_1_1DyHistogramEqualEntries.html#acb70a731a91ac2d8cfd8ed5ab38787f5" title="Sets the representation of the data points.">DyHistogramEqualEntries::</a>
<a name="l00053"></a><a class="code" href="classhippodraw_1_1DyHistogramEqualEntries.html#acb70a731a91ac2d8cfd8ed5ab38787f5">00053</a> <a class="code" href="classhippodraw_1_1DyHistogramEqualEntries.html#acb70a731a91ac2d8cfd8ed5ab38787f5" title="Sets the representation of the data points.">setPointRep</a> ( <a class="code" href="classhippodraw_1_1RepBase.html" title="The base class for the point representation hierarchy.">RepBase</a> * rep )
<a name="l00054"></a>00054 {
<a name="l00055"></a>00055   <a class="code" href="classhippodraw_1_1DyHistogramEqualEntries.html#acb70a731a91ac2d8cfd8ed5ab38787f5" title="Sets the representation of the data points.">DataRep::setPointRep</a> ( rep );
<a name="l00056"></a>00056   <span class="keywordflow">if</span> ( rep -&gt; <a class="code" href="classhippodraw_1_1DataRep.html#a11c23a386abb9eb8a42f0c2c2835d640" title="Returns the name of the display.">name</a> () == <span class="stringliteral">&quot;Symbol&quot;</span> ) {
<a name="l00057"></a>00057     rep -&gt; setSize ( 4. );
<a name="l00058"></a>00058     <a class="code" href="classhippodraw_1_1DataRep.html#a41def2e9cbc6b5be5674c5666e8d7593" title="Sets the display of error bar, if applicable, on the specified axis.">setErrorDisplay</a> ( <a class="code" href="namespacehippodraw_1_1Axes.html#a1d1cfd8ffb84e947f82999c682b666a7a5596231eabd6cf29050967d5ac83ad84" title="Y axis.">Axes::Y</a>, <span class="keyword">true</span> );
<a name="l00059"></a>00059     <a class="code" href="classhippodraw_1_1Observable.html#a22405609eb7094686259b6a82ad8e0cc" title="Notifies Observer objects of a change.">notifyObservers</a> ();
<a name="l00060"></a>00060   }
<a name="l00061"></a>00061 }
<a name="l00062"></a>00062 
<a name="l00063"></a>00063 <span class="keywordtype">bool</span>
<a name="l00064"></a>00064 <a class="code" href="classhippodraw_1_1DyHistogramEqualEntries.html#aa0c9706bc92a98daae1a677ea435a161" title="Returns true if the data representation has specified axis type axis.">DyHistogramEqualEntries::</a>
<a name="l00065"></a><a class="code" href="classhippodraw_1_1DyHistogramEqualEntries.html#aa0c9706bc92a98daae1a677ea435a161">00065</a> <a class="code" href="classhippodraw_1_1DyHistogramEqualEntries.html#aa0c9706bc92a98daae1a677ea435a161" title="Returns true if the data representation has specified axis type axis.">hasAxis</a> ( <a class="code" href="namespacehippodraw_1_1Axes.html#a1d1cfd8ffb84e947f82999c682b666a7" title="Axes constants.">hippodraw::Axes::Type</a> axis )<span class="keyword"> const</span>
<a name="l00066"></a>00066 <span class="keyword"></span>{
<a name="l00067"></a>00067   <span class="keywordflow">return</span> axis == <a class="code" href="namespacehippodraw_1_1Axes.html#a1d1cfd8ffb84e947f82999c682b666a7a58833a3110c570fb05130d40c365d1e4" title="X axis.">Axes::X</a> || axis == <a class="code" href="namespacehippodraw_1_1Axes.html#a1d1cfd8ffb84e947f82999c682b666a7a5596231eabd6cf29050967d5ac83ad84" title="Y axis.">Axes::Y</a>;
<a name="l00068"></a>00068 }
<a name="l00069"></a>00069 
<a name="l00070"></a>00070 } <span class="comment">// namespace hippodraw</span>
</pre></div></div>
<hr size="1"><address style="align: right;"><small>
Generated for HippoDraw Class Library by <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0>
</a> </small></address>
</body>
</html>