This file is indexed.

/usr/include/odinpara/jdxfilter.h is in libodin-dev 1.8.8-1.

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
/***************************************************************************
                          jdxfilter.h  -  description
                             -------------------
    begin                : Thu Jul 6 2006
    copyright            : (C) 2000-2014 by Thies H. Jochimsen
    email                : thies@jochimsen.de
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/
#ifndef JDXFILTER_H
#define JDXFILTER_H

#include <odinpara/jdxfunction.h>

/**
  * @addtogroup jcampdx
  * @{
  */

/**
  *
  * Wrapper class for pulse shape functions.
  */
class JDXfilter : public JDXfunction,  public StaticHandler<JDXfilter> {

 public:
  JDXfilter(const STD_string& jdxlabel="unnamedJDXfilter") : JDXfunction(filterFunc,jdxlabel) {}

  JDXfilter(const JDXfilter& jf) : JDXfunction(jf) {}

  JDXfilter& operator = (const JDXfilter& jf) {JDXfunction::operator = (jf); return *this;}

  float calculate (float rel_kradius) const {
    if(allocated_function) return allocated_function->calculate_filter(rel_kradius);
    else return 0.0;
  }


  static void init_static();
  static void destroy_static();

};


/** @}
  */

#endif