This file is indexed.

/usr/include/relion-1.4/src/autopicker_mpi.h is in librelion+mpi+gui-dev 1.4+dfsg-3ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * autopicker_mpi.h
 *
 *  Created on: Sep 18, 2013
 *      Author: "Sjors H.W. Scheres"
 */

#ifndef AUTOPICKER_MPI_H_
#define AUTOPICKER_MPI_H_

#include "src/mpi.h"
#include "src/autopicker.h"
#include "src/parallel.h"

class AutoPickerMpi: public AutoPicker
{
private:
	MpiNode *node;

public:
	/** Destructor, calls MPI_Finalize */
    ~AutoPickerMpi()
    {
        delete node;
    }

    /** Read
     * This could take care of mpi-parallelisation-dependent variables
     */
    void read(int argc, char **argv);

    // Parallelized run function
    void run();

};

#endif /* AUTOPICKER_MPI_H_ */