00001 /* 00002 00003 Copyright (c) 2003, Cornell University 00004 All rights reserved. 00005 00006 Redistribution and use in source and binary forms, with or without 00007 modification, are permitted provided that the following conditions are met: 00008 00009 - Redistributions of source code must retain the above copyright notice, 00010 this list of conditions and the following disclaimer. 00011 - Redistributions in binary form must reproduce the above copyright 00012 notice, this list of conditions and the following disclaimer in the 00013 documentation and/or other materials provided with the distribution. 00014 - Neither the name of Cornell University nor the names of its 00015 contributors may be used to endorse or promote products derived from 00016 this software without specific prior written permission. 00017 00018 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00019 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00020 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00021 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 00022 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 00023 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 00024 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 00025 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 00026 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00027 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 00028 THE POSSIBILITY OF SUCH DAMAGE. 00029 00030 */ 00031 00032 #ifndef _GRIDINPUT_H 00033 #define _GRIDINPUT_H 00034 00035 #include "producer.h" 00036 #include "machine.h" 00037 00038 using namespace TNT; 00039 00040 namespace CLUS 00041 { 00042 00043 class GridInputProducer: public DataProducer 00044 { 00045 00046 protected: 00047 int gridDim; 00048 double step; 00049 Vector<int> pos; 00050 const Vector<Scale>& scale; 00051 00052 public: 00053 GridInputProducer(int GridDim, Subscript N, const Vector<Scale>& _scale): 00054 DataProducer(N), pos(N,0), scale(_scale) 00055 { 00056 gridDim=GridDim; 00057 step=2.0/(GridDim-1); 00058 } 00059 00060 virtual bool Tick(void) 00061 { 00062 if (pos[0]==gridDim) 00063 return false; 00064 00065 // compute output as function of pos 00066 for(int i=0; i<output.dim(); i++) 00067 { 00068 output[i]=-1.0+pos[i]*step; 00069 output[i]=scale[i].InverseTransform(output[i]); 00070 } 00071 00072 // increment pos 00073 int i=output.dim()-1; 00074 pos[output.dim()-1]++; 00075 00076 while (i>0 && pos[i]==gridDim) 00077 { 00078 pos[i]=0; 00079 pos[--i]++; 00080 } 00081 00082 return true; 00083 } 00084 00085 void Start(void) 00086 { 00087 for(int i=0; i<output.dim(); i++) 00088 pos[i]=0; 00089 } 00090 }; 00091 } 00092 00093 #endif // _GRIDINPUT_H