diff options
author | Thomas White <taw@physics.org> | 2011-11-15 15:31:13 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:40 +0100 |
commit | 3c896e8741763b66fa056d6c8d79557225e66ad2 (patch) | |
tree | ffbb4fa21e6d9e0a7f65d5939ac2d48c9f2beb91 /src | |
parent | 8557420ba0f50abdc1bf6245401fcd2566678f72 (diff) |
Remove render_hkl --povray and remenants of cubeit
Diffstat (limited to 'src')
-rw-r--r-- | src/povray.c | 354 | ||||
-rw-r--r-- | src/povray.h | 27 | ||||
-rw-r--r-- | src/render_hkl.c | 27 |
3 files changed, 8 insertions, 400 deletions
diff --git a/src/povray.c b/src/povray.c deleted file mode 100644 index d20c18e5..00000000 --- a/src/povray.c +++ /dev/null @@ -1,354 +0,0 @@ -/* - * povray.c - * - * Invoke POV-ray - * - * (c) 2006-2010 Thomas White <taw@physics.org> - * - * Part of CrystFEL - crystallography with a FEL - * - */ - - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - - -#include <sys/types.h> -#include <sys/wait.h> -#include <unistd.h> - -#include "cell.h" -#include "utils.h" -#include "symmetry.h" -#include "render_hkl.h" -#include "povray.h" - - -#define MAX_PROC (256) - - -int povray_render_animation(UnitCell *cell, RefList *list, unsigned int nproc, - const SymOpList *sym, int wght, double boost, - double scale_top) -{ - FILE *fh; - double asx, asy, asz; - double bsx, bsy, bsz; - double csx, csy, csz; - pid_t pids[MAX_PROC]; - float max; - int i; - Reflection *refl; - RefListIterator *iter; - SymOpMask *m; - - if ( (nproc > MAX_PROC) || (nproc < 1) ) { - ERROR("Number of processes must be a number between 1 and %i\n", - MAX_PROC); - return 1; - } - - fh = fopen("render.pov", "w"); - fprintf(fh, "/* POV-Ray scene written by CrystFEL */\n\n"); - fprintf(fh, "#include \"colors.inc\"\n"); - fprintf(fh, "#include \"textures.inc\"\n\n"); - fprintf(fh, "global_settings {\n"); - fprintf(fh, " assumed_gamma 1.0\n"); - fprintf(fh, " ambient_light 5.0\n"); - fprintf(fh, "}\n\n"); - - /* First quarter */ - fprintf(fh, "#if ( (clock >= 0) & (clock <= 124) )\n"); - fprintf(fh, "camera { location <0.0, -3.0, 0.0>" - " sky z direction 1.1*y\n" - " right -x*(image_width/image_height)\n" - " look_at <0.0, 0.0, 0.0> }\n\n"); - fprintf(fh, "#end\n"); - - /* Second quarter */ - fprintf(fh, "#if ( (clock >= 125) & (clock <= 249) )\n"); - fprintf(fh, "camera { location <0.0," - " -(2.0+cos(radians((clock-125)*(180/125)))), 0.0>" - " sky z direction 1.1*y\n" - " right -x*(image_width/image_height)\n" - " look_at <0.0, 0.0, 0.0> }\n\n"); - fprintf(fh, "#end\n"); - - /* Third quarter */ - fprintf(fh, "#if ( (clock >= 250) & (clock <= 374) )\n"); - fprintf(fh, "camera { location <0.0, -1.0, 0.0>" - " sky z direction 1.1*y\n" - " right -x*(image_width/image_height)\n" - " look_at <0.0, 0.0, 0.0> }\n\n"); - fprintf(fh, "#end\n"); - - /* Fourth quarter */ - fprintf(fh, "#if ( (clock >= 375) & (clock <= 500) )\n"); - fprintf(fh, "camera { location <0.0," - " -(2.0+cos(radians((clock-375)*(180/125)+180))), 0.0>" - " sky z direction 1.1*y\n" - " right -x*(image_width/image_height)\n" - " look_at <0.0, 0.0, 0.0> }\n\n"); - fprintf(fh, "#end\n"); - - fprintf(fh, "light_source { <-3.0 -3.0 3.0> White }\n"); - fprintf(fh, "light_source { <+3.0 -3.0 3.0> White }\n"); - fprintf(fh, "light_source { <0.0, -3.0, 0.0> 2*White }\n"); - fprintf(fh, "plane {z,-2.0 pigment { rgb <0.0, 0.0, 0.1> } }\n"); - fprintf(fh, "plane {-z,-2.0 pigment { rgb <0.0, 0.0, 0.05> } }\n\n"); - - cell_get_reciprocal(cell, &asx, &asy, &asz, - &bsx, &bsy, &bsz, - &csx, &csy, &csz); - - fprintf(fh, "#declare WCA = (720/19);\n"); - fprintf(fh, "#declare WCL = (360/8.5);\n"); - fprintf(fh, "#declare TA = (4.875);\n"); - fprintf(fh, "#declare TB = (1.125);\n"); - - fprintf(fh, "#declare TRANS = \n"); - fprintf(fh, "transform {\n"); - - /* First half */ - - /* Acceleration */ - fprintf(fh, "#if ( clock <= 24 )\n" - "rotate <0, 0, 0.5*WCA*(clock/25)*(clock/25)>\n" - "#end\n" - - /* Cruise */ - "#if ( (clock >= 25) & (clock <= 224) )\n" - "rotate <0, 0, (WCA/2)+WCA*((clock-25)/25)>\n" - "#end\n" - - /* Overlap */ - - /* Deceleration */ - "#if ( (clock >= 225) & (clock <= 274) )\n" - "rotate <0, 0, 360-WCA + WCA*((clock-225)/25) " - " - 0.5*(WCA/2)*((clock-225)/25)*((clock-225)/25) >\n" - "#end\n" - - /* Acceleration */ - "#if ( (clock >= 225) & (clock <= 274) )\n" - "rotate <0.5*(WCL/2)*((clock-225)/25)*((clock-225)/25), 0, 0>\n" - "#end\n" - - /* Second half */ - - /* Cruise */ - "#if ( (clock >= 275) & (clock <= 396) )\n" - "rotate <WCL + WCL*((clock-275)/25), 0, 0>\n" - "#end\n" - - /* Deceleration to pause */ - "#if ( (clock >= 397) & (clock <= 421) )\n" - "rotate <(1+TA)*WCL+ WCL*((clock-397)/25) " - " - 0.5*WCL*((clock-397)/25)*((clock-397)/25), 0, 0 >\n" - "#end\n" - - /* Acceleration after pause */ - "#if ( (clock >= 422) & (clock <= 446) )\n" - "rotate <(1.5+TA)*WCL" - " + 0.5*WCL*((clock-422)/25)*((clock-422)/25), 0, 0>\n" - "#end\n" - - /* Final Cruise */ - "#if ( (clock >= 447) & (clock <= 474) )\n" - "rotate <(2+TA)*WCL + WCL*((clock-447)/25), 0, 0>\n" - "#end\n" - - /* Final Deceleration */ - "#if ( (clock >= 475) & (clock <= 499) )\n" - "rotate <(2+TA+TB)*WCL + WCL*((clock-475)/25) " - " - 0.5*WCL*((clock-475)/25)*((clock-475)/25), 0, 0 >\n" - "#end\n"); - - fprintf(fh, "}\n"); - - m = new_symopmask(sym); - - max = 0.0; - for ( refl = first_refl(list, &iter); - refl != NULL; - refl = next_refl(refl, iter) ) { - - float val; - signed int h, k, l; - - get_indices(refl, &h, &k, &l); - special_position(sym, m, h, k, l); - - switch ( wght ) { - case WGHT_I : - val = get_intensity(refl); - break; - case WGHT_SQRTI : - val = get_intensity(refl); - val = (val>0.0) ? sqrt(val) : 0.0; - break; - case WGHT_COUNTS : - val = get_redundancy(refl); - val /= (double)num_equivs(sym, m); - break; - case WGHT_RAWCOUNTS : - val = get_redundancy(refl); - break; - default : - ERROR("Invalid weighting.\n"); - abort(); - } - - if ( val > max ) max = val; - - } - max /= boost; - - /* Use manual scale top if specified */ - if ( scale_top > 0.0 ) { - max = scale_top; - } - - for ( refl = first_refl(list, &iter); - refl != NULL; - refl = next_refl(refl, iter) ) { - - signed int h, k, l;float radius; - int s; - float val, p, r, g, b, trans; - int j; - int neq; - - get_indices(refl, &h, &k, &l); - special_position(sym, m, h, k, l); - neq = num_equivs(sym, m); - - switch ( wght ) { - case WGHT_I : - val = get_intensity(refl); - break; - case WGHT_SQRTI : - val = get_intensity(refl); - val = (val>0.0) ? sqrt(val) : 0.0; - break; - case WGHT_COUNTS : - val = get_redundancy(refl); - val /= (double)neq; - break; - case WGHT_RAWCOUNTS : - val = get_redundancy(refl); - break; - default : - ERROR("Invalid weighting.\n"); - abort(); - } - - s = val / (max/6); - p = fmod(val, max/6); - p /= (max/6); - - r = 0; g = 0; b = 0; - - if ( (val < 0.0) ) { - s = 0; - p = 1.0; - } - if ( (val > max) ) { - s = 6; - } - switch ( s ) { - case 0 : /* Black to blue */ - r = 0.0; g = 0.0; b = p; - break; - case 1 : /* Blue to green */ - r = 0.0; g = p; b = 1.0-p; - break; - case 2 : /* Green to red */ - r =p; g = 1.0-p; b = 0.0; - break; - case 3 : /* Red to Orange */ - r = 1.0; g = 0.5*p; b = 0.0; - break; - case 4 : /* Orange to Yellow */ - r = 1.0; g = 0.5 + 0.5*p; b = 0.0; - break; - case 5 : /* Yellow to White */ - r = 1.0; g = 1.0; b = 1.0*p; - break; - case 6 : /* Pixel has hit the maximum value */ - r = 1.0; g = 1.0; b = 1.0; - break; - } - - if ( val <= 0.0 ) continue; - radius = 0.01 * pow(val, 0.25)/pow(max, 0.25); - trans = 1.0-(val/max); - - /* For each equivalent */ - for ( j=0; j<neq; j++ ) { - - signed int he, ke, le; - float x, y, z; - - get_equiv(sym, m, j, h, k, l, &he, &ke, &le); - - x = asx*he + bsx*ke + csx*le; - y = asy*he + bsy*ke + csy*le; - z = asz*he + bsz*ke + csz*le; - - fprintf(fh, "sphere { <%.5f, %.5f, %.5f>, %.5f " - "texture{pigment{color rgb <%f, %f, %f>" - " transmit %f} " - "finish { reflection %f } } \n" - "transform { TRANS }\n" - "}\n", - x/1e9, y/1e9, z/1e9, radius, - r, g, b, trans, 0.1*(1.0-trans)); - - } - - } - - free_symopmask(m); - - fprintf(fh, "\n"); - fclose(fh); - - for ( i=0; i<nproc; i++ ) { - - pids[i] = fork(); - if ( !( (pids[i] != 0) && (pids[i] != -1) ) ) { - if ( pids[i] == -1 ) { - ERROR("fork() failed.\n"); - } else { - - char minf[256]; - char maxf[256]; - float nf, xf, nsec; - - nsec = 500.0 / (float)nproc; - nf = nsec * (float)i; - xf = (nsec * (float)i + nsec) - 1.0; - - snprintf(minf, 255, "+SF%i", (int)nf); - snprintf(maxf, 255, "+EF%i", (int)xf); - - /* Forked successfully, child process */ - execlp("povray", "", "+W1024", "+H768", - "+Irender.pov", "+Orender.png", - "+KFI0", "+KFF499", "+KI0", "+KF499", - minf, maxf, "-D", NULL); - - } - } /* else start the next one */ - } - - for ( i=0; i<nproc; i++ ) { - int r; - waitpid(pids[i], &r, 0); - } - - return 0; -} diff --git a/src/povray.h b/src/povray.h deleted file mode 100644 index f91c141c..00000000 --- a/src/povray.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * povray.h - * - * Invoke POV-ray - * - * (c) 2006-2011 Thomas White <taw@physics.org> - * - * Part of CrystFEL - crystallography with a FEL - * - */ - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -#ifndef POVRAY_H -#define POVRAY_H - -#include "reflist.h" -#include "cell.h" -#include "symmetry.h" - -extern int povray_render_animation(UnitCell *cell, RefList *list, - unsigned int nproc, const SymOpList *sym, - int wght, double boost, double scale_top); - -#endif /* POVRAY_H */ diff --git a/src/render_hkl.c b/src/render_hkl.c index 69791e4a..b37cc00b 100644 --- a/src/render_hkl.c +++ b/src/render_hkl.c @@ -26,7 +26,6 @@ #endif #include "utils.h" -#include "povray.h" #include "symmetry.h" #include "render.h" #include "render_hkl.h" @@ -41,12 +40,7 @@ static void show_help(const char *s) { printf("Syntax: %s [options] <file.hkl>\n\n", s); printf( -"Render intensity lists in various ways.\n" -"\n" -" --povray Render a 3D animation using POV-ray.\n" -#ifdef HAVE_CAIRO -" --zone-axis Render a 2D zone axis pattern.\n" -#endif +"Render intensity lists in 2D slices.\n" "\n" " -d, --down=<h>,<k>,<l> Indices for the axis in the downward direction.\n" " Default: 1,0,0.\n" @@ -565,7 +559,6 @@ int main(int argc, char *argv[]) UnitCell *cell; RefList *list; char *infile; - int config_povray = 0; int config_zoneaxis = 0; int config_sqrt = 0; int config_colkey = 0; @@ -590,7 +583,6 @@ int main(int argc, char *argv[]) /* Long options */ const struct option longopts[] = { {"help", 0, NULL, 'h'}, - {"povray", 0, &config_povray, 1}, {"zone-axis", 0, &config_zoneaxis, 1}, {"output", 1, NULL, 'o'}, {"pdb", 1, NULL, 'p'}, @@ -675,6 +667,11 @@ int main(int argc, char *argv[]) } + if ( config_zoneaxis ) { + ERROR("Friendly warning: The --zone-axis option isn't needed" + " any longer (I ignored it for you).\n"); + } + if ( (pdb == NULL) && !config_colkey ) { ERROR("You must specify the PDB containing the unit cell.\n"); return 1; @@ -692,7 +689,6 @@ int main(int argc, char *argv[]) if ( outfile == NULL ) outfile = strdup("za.pdf"); - if ( strcmp(weighting, "I") == 0 ) { wght = WGHT_I; } else if ( strcmp(weighting, "sqrtI") == 0 ) { @@ -780,15 +776,8 @@ int main(int argc, char *argv[]) return 1; } - if ( config_povray ) { - r = povray_render_animation(cell, list, - nproc, sym, wght, boost, scale_top); - } else if ( config_zoneaxis ) { - render_za(cell, list, boost, sym, wght, colscale, - rh, rk, rl, dh, dk, dl, outfile, scale_top); - } else { - ERROR("Try again with either --povray or --zone-axis.\n"); - } + render_za(cell, list, boost, sym, wght, colscale, + rh, rk, rl, dh, dk, dl, outfile, scale_top); free(pdb); free_symoplist(sym); |