This file is indexed.

/usr/include/paraview/vtkPriorityHelper.h is in paraview-dev 4.0.1-1ubuntu1.

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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*=========================================================================

  Program:   ParaView
  Module:    vtkPriorityHelper.h

  Copyright (c) Kitware, Inc.
  All rights reserved.
  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.

     This software is distributed WITHOUT ANY WARRANTY; without even
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
     PURPOSE.  See the above copyright notice for more information.

=========================================================================*/
// .NAME vtkPriorityHelper - partially updates the input
// .SECTION Description
// When the servermanager drives the data processing pipeline, for example,
// when filling in the information tab, the streaming View plugin
// adds this to pipeline so that it can prevent whole data updates.

#ifndef __vtkPriorityHelper_h
#define __vtkPriorityHelper_h

#include "vtkObject.h"
#include "vtkPVVTKExtensionsCoreModule.h" // needed for export macro

class vtkAlgorithmOutput;
class vtkAlgorithm;
class vtkDataObject;

class VTKPVVTKEXTENSIONSCORE_EXPORT vtkPriorityHelper : public vtkObject
{
public:
  static vtkPriorityHelper* New();
  vtkTypeMacro(vtkPriorityHelper, vtkObject);
  void PrintSelf(ostream&, vtkIndent);

  // Descrition:
  // Tell it what filter you want to control.
  void SetInputConnection(vtkAlgorithmOutput *input);

  // Description:
  // Tell it what piece you want to get out of that filter.
  int SetSplitUpdateExtent(int port, //input filter's n'th output port
                           int processors, //parallel rank
                           int numProcessors, //parallel number of processes
                           int pass, //streaming pass
                           int numPasses, //streaming number of passes
                           double resolution); //streaming resolution

  // Description:
  // Get the data produced.
  vtkDataObject *GetDataObject();

  // Description:
  // Update the pipeline.
  void Update();

protected:
  vtkPriorityHelper();
  ~vtkPriorityHelper();

  vtkAlgorithm *Input;
  int Port;

private:
  vtkPriorityHelper(const vtkPriorityHelper&); // Not implemented
  void operator=(const vtkPriorityHelper&); // Not implemented
};

#endif