ctftilt
CTFTILT - determines defocus, astigmatism tilt axis and tilt angle for images of arbitrary size (MRC format). Astigmatic angle is measured from x axis (same conventions as in the MRC 2D image processing programs).
C***************************************************************************** C C CTFTILT - determines defocus, astigmatism tilt axis and tilt angle C for images of arbitrary size (MRC format). Astigmatic angle is measured C from x axis (same conventions as in the MRC 2D image processing C programs). C C CARD 1: Input file name for image C CARD 2: Output file name to check result C CARD 3: CS[mm], HT[kV], AmpCnst, XMAG, DStep[um],PAve C CARD 4: Box, ResMin[A], ResMax[A], dFMin[A], dFMax[A], FStep C C The output image file to check the result of the fitting C shows the filtered average power spectrum of the input C image in one half, and the fitted CTF (squared) in the C other half. The two halves should agree very well for a C successful fit. C C CS: Spherical aberration coefficient of the objective in mm C HT: Electron beam voltage in kV C AmpCnst: Amount of amplitude contrast (fraction). For ice C images 0.07, for negative stain about 0.15. C XMAG: Magnification of original image C DStep: Pixel size on scanner in microns C PAve: Pixel averaging (PAve x PAve) for input image C Box: Tile size. The program divides the image into square C tiles and calculates the average power spectrum. Tiles C with a significantly higher or lower variance are C excluded; these are parts of the image which are unlikely C to contain useful information (beam edge, film number C etc). IMPORTANT: Box must have a even pixel dimensions. C ResMin: Low resolution end of data to be fitted. C ResMaX: High resolution end of data to be fitted. C dFMin: Starting defocus value for grid search in Angstrom. C Positive values represent an underfocus. The program C performs a systematic grid search of defocus values C and astigmatism before fitting a CTF to machine C precision. C dFMax: End defocus value for grid search in Angstrom. C FStep: Step width for grid search in Angstrom. C C***************************************************************************** C example command file (UNIX): C C #!/bin/csh -x C # C # ctftilt C # C time /public/image/bin/ctftilt.exe << eof C image.mrc C power.mrc C 2.6,200.0,0.07,60000.0,28.0,2 C 128,100.0,15.0,30000.0,90000.0,5000.0 C eof C # C*****************************************************************************