-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathParameters.cs
28 lines (23 loc) · 880 Bytes
/
Parameters.cs
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
using System;
namespace Herring
{
enum LogTimeMode
{
FiveMinutes,
FifteenMinutes,
OneHour,
WholeDay
}
static class Parameters
{
public static LogTimeMode LogTimeMode = LogTimeMode.FiveMinutes;
public static int LogTimeUnit = 300; // [s]
public static int LogSamplingRate = 100; // how many samples are taken for one time unit (should be at least 3)
public static int InactivityThreshold_Idle = 30; // [s]
public static int InactivityThreshold_Away = 120; // [s] after this time the user is assumed AWAY of the computer
public static bool AutoScroll = false;
public static bool TrackActivity = true;
public static double MinimumShare = 3.0;
public static int MaxTitleDifferenceLength = 5;
}
}