Main Page
Namespaces
Classes
Package Documentation
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Pages
DQM
Integration
config
OnlineQuotas.py
Go to the documentation of this file.
1
#!/usr/bin/env python
2
3
#Quotas {'Datatype':{'FDSN':[[runt_type,keep_period,min_num_lumis]]}}
4
# Any run/dataset stays the longest time from all applicable quotas.
5
6
# Collisions runs as old as 2 years.
7
# Cosmic runs that lasted 50 lumisections or more on the past 6 months
8
# Cosmic runs that lasted 25 lumisections or more on the past 3 months
9
# Cosmic runs that lasted less than 25 lumisections from the last month
10
# Test runs from the last month
11
# By default things stay in the GUI for a year
12
{
'online_data'
:{
'.*'
:[
13
[COLLISIONS_RUN,365*2,0],
14
[COSMICS_RUN,6 * 30,50],
15
[COSMICS_RUN,3 * 30,25],
16
[COSMICS_RUN,30,0],
17
[TEST_RUN,1,0],
18
[TEST_RUN,15,25],
19
[TEST_RUN,30,100]
20
]}}
Generated for CMSSW Reference Manual by
1.8.5