This file is indexed.

/usr/include/root/RooStats/HistFactory/PreprocessFunction.h is in libroot-roofit-dev 5.34.00-2.

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
#ifndef PREPROCESS_FUNCTION_H
#define PREPROCESS_FUNCTION_H

#include <string>
#include <iostream>

namespace RooStats{
namespace HistFactory {

  class PreprocessFunction {
  public:

    PreprocessFunction();

    void Print(std::ostream& = std::cout);  

    void SetName( const std::string& Name) { fName = Name; }
    std::string GetName() { return fName; }

    void SetExpression( const std::string& Expression) { fExpression = Expression; }
    std::string GetExpression() { return fExpression; }

    void SetDependents( const std::string& Dependents) { fDependents = Dependents; }
    std::string GetDependents() { return fDependents; }
    
    void SetCommand( const std::string& Command) { fCommand = Command; }
    std::string GetCommand() { return fCommand; }

  protected:


    std::string fName;
    std::string fExpression;
    std::string fDependents;

    std::string fCommand;



  };


}
}


#endif