Initial snark14m import
[snark14.git] / src / snark / alp3.cpp
1 /*
2  ***********************************************************
3  $SNARK_Header: S N A R K  1 4 - A PICTURE RECONSTRUCTION PROGRAM $
4  $HeadURL: svn://dig.cs.gc.cuny.edu/snark/trunk/src/snark/alp3.cpp $
5  $LastChangedRevision: 85 $
6  $Date: 2014-07-02 16:07:08 -0400 (Wed, 02 Jul 2014) $
7  $Author: agulati $
8  ***********************************************************
9
10  CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
11  C
12  C     DUMMY RECONSTRUCTION ALGORITHM - TO BE REPLACED BY USER
13  C     THIS USER ALGORITHM ONLY PERFORMS PIXEL BASED RECONSTRUCTIONS
14  C
15  CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
16  //testing making changes. Ran.
17  */
18
19 #include <cstdio>
20
21 #include "blkdta.h"
22 #include "uiod.h"
23
24 #include "alp3.h"
25
26 BOOLEAN alp3_class::Run(REAL* recon, INTEGER* list, REAL* weight, INTEGER iter)
27 {
28         fprintf(output, "\n          This is the dummy version of ALP3.");
29         fprintf(output, "\n          If you wish to use such a routine, then you");
30         fprintf(output, "\n          should replace it by your own version of it.");
31
32         return FALSE;
33 }