<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">Thanks for the quick reply, Leo.<br>
      <br>
      I prefer to have a class that acts like a container of data
      frames. I already use the keys that you have mentioned for looping
      over pipeline, in order to do operations "on temporal data set". I
      mean, the TemporalDataSets are sending back and forth over
      pipeline. Having a class (like vtktemporalDataSet) that acts like
      "container" of data would be much easier to avoid nested loops in
      my case.<br>
      <br>
      Do you have any suggestion for a data container class such as
      alternative to vtkTemporalDataSet class? Is deriving from
      vtkMultiTimeStepAlgorithm suitable to create such container class?<br>
      <br>
      Next, I see vtkTemporalDataSet is still in vtk. Does it mean vtk
      (well not ParaView) continue to support it?<br>
      <br>
      Again, Thanks.<br>
      <br>
      On 01/09/2013 08:50 PM, Yuanxin Liu wrote:<br>
    </div>
    <blockquote
cite="mid:CAH+HHJ-snOmnH=iTuPwAoy7F3d_uaFmE=wH=7Ov+-MVJndB_qA@mail.gmail.com"
      type="cite">
      <div dir="ltr">Hi,&nbsp;
        <div style="">&nbsp; This is because vtkTemporalDataSet is no longer
          supported. &nbsp;The details of the change can be seen here:&nbsp;<a
            moz-do-not-send="true"
            href="http://www.vtk.org/Wiki/VTK/Remove_vtkTemporalDataSet">http://www.vtk.org/Wiki/VTK/Remove_vtkTemporalDataSet</a>.
          &nbsp; &nbsp;In short, the executives now only support updating single
          time steps; if a filter needs to use multiple time step data,
          it needs to use the key&nbsp;<span
style="color:rgb(0,0,0);font-family:sans-serif;font-size:12.800000190734863px;line-height:19.03999900817871px">vtkStreamingDemandPipeline::CONTINUE_EXECUTION</span><span
style="color:rgb(0,0,0);font-family:sans-serif;font-size:12.800000190734863px;line-height:19.03999900817871px">()</span>&nbsp;to

          loop over those time steps.</div>
        <div style=""><br>
        </div>
        <div style="">&nbsp; If your filter works only on single time steps,
          then the change should be fairly straightforward. &nbsp;Try:</div>
        <div style="">&nbsp;- Inherit from vtkDataObjectAlgorithm instead of
          vtkTemporalDataSetAlgorithm &nbsp;<br>
        </div>
        <div style="">&nbsp;- replace the key UPDATE_TIME_STEPS()
          by&nbsp;UPDATE_TIME_STEP()</div>
        <div style="">&nbsp;- replace the key DATA_TIME_STEPS() by
          DATA_TIME_STEP()</div>
        <div style=""><br>
        </div>
        <div style="">&nbsp; The compiler would then hopefully guide you to
          resolve the rest of the errors.&nbsp; Let me know if you have
          trouble. &nbsp;Also please feel free to post your code.</div>
        <div style=""><br>
        </div>
        <div style="">Leo</div>
        <div style=""><br>
        </div>
        <div style=""><br>
        </div>
        <div style="">&nbsp;</div>
        <div style=""><br>
        </div>
        <div style=""><br>
        </div>
        <div style=""><br>
        </div>
        <div style=""><br>
        </div>
        <div style=""><br>
        </div>
        <div style=""><br>
        </div>
        <div style=""><br>
        </div>
      </div>
      <div class="gmail_extra"><br>
        <br>
        <div class="gmail_quote">On Wed, Jan 9, 2013 at 9:00 PM, Sunrise
          <span dir="ltr">&lt;<a moz-do-not-send="true"
              href="mailto:helios.corona@gmail.com" target="_blank">helios.corona@gmail.com</a>&gt;</span>
          wrote:<br>
          <blockquote class="gmail_quote" style="margin:0 0 0
            .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello
            everyone,<br>
            <br>
            I am compiling ParaView developement in order to develop a
            ParaView plugin. Some of my classes are inherited from
            vtkTemporalDataSetAlgorithm. In previous version(s) of
            ParaView source code (i.e. &lt;= 3.14.1) I could use
            vtkTemporalDataSetAlgorithm and I everything was fine.<br>
            <br>
            Recently I tried to use newer version of ParaView source
            (version 3.98.0) and some vtk files are missed, such as:<br>
            <br>
            .../Filtering/vtkTemporalDataSetAlgorithm.cxx<br>
            .../Filtering/vtkTemporalDataSet.cxx<br>
            .../Filtering/vtkTemporalDataSetAlgorithm.h<br>
            .../Filtering/vtkTemporalDataSet.h<br>
            <br>
            How can I use vtkTemporalDataSet* in recent ParaView?<br>
            <br>
            Thanks.<br>
            _______________________________________________<br>
            Paraview-developers mailing list<br>
            <a moz-do-not-send="true"
              href="mailto:Paraview-developers@paraview.org"
              target="_blank">Paraview-developers@paraview.org</a><br>
            <a moz-do-not-send="true"
              href="http://public.kitware.com/mailman/listinfo/paraview-developers"
              target="_blank">http://public.kitware.com/mailman/listinfo/paraview-developers</a><br>
          </blockquote>
        </div>
        <br>
      </div>
    </blockquote>
    <br>
  </body>
</html>