Isis 3 Programmer Reference
FilterCachingAlgorithm.h
Go to the documentation of this file.
1 
24 #ifndef RegionalCachingAlgorithm_h
25 #define RegionalCachingAlgorithm_h
26 
27 #include "CubeCachingAlgorithm.h"
28 
29 namespace Isis {
40  public:
41  FilterCachingAlgorithm(int numParallelIOs);
42  virtual ~FilterCachingAlgorithm();
43 
45  QList<RawCubeChunk *> allocated, QList<RawCubeChunk *> justUsed,
46  const Buffer &justRequested);
47 
48  private:
54 
59  };
60 }
61 
62 #endif
Buffer for reading and writing cube data.
Definition: Buffer.h:69
int m_currentIo
This keeps track of our position inside of m_chunksToKeep.
This algorithm is designed for applications that use ProcessByQuickFilter or very similar I/O pattern...
FilterCachingAlgorithm(int numParallelIOs)
Construct a new FilterCachingAlgorithm.
QList< QList< RawCubeChunk *> > * m_chunksToKeep
This is stored from parallel read # -> list of chunks for that read.
virtual ~FilterCachingAlgorithm()
Frees the memory allocated by this caching algorithm.
virtual CacheResult recommendChunksToFree(QList< RawCubeChunk *> allocated, QList< RawCubeChunk *> justUsed, const Buffer &justRequested)
Please see the class description for how this algorithm works.
This stores the results of the caching algorithm.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
This is the parent of the caching algorithms