![]() |
|
|||
File indexing completed on 2024-04-06 12:33:13
0001 #! /usr/bin/env python3 0002 0003 import os 0004 import shutil 0005 import sys 0006 import fileinput 0007 import string 0008 0009 ############################################################## 0010 # Input parameters 0011 # 0012 0013 # 0014 # Should we execute the code? 0015 # 0016 Submit=True 0017 0018 # 0019 # Should we publish the results? 0020 # 0021 Publish=True 0022 0023 # + Location of the AFS place where to put the PDFs 0024 WebRepository = '/afs/cern.ch/cms/Physics/muon/CMSSW/Performance/RecoMuon/Validation/val' 0025 0026 # User enabled to write in the afs area 0027 User='ndefilip' 0028 0029 # 0030 # Information about the new release 0031 # 0032 NewParams = dict( 0033 # Type of parameters 0034 Type='New', 0035 0036 # Releases to compare 0037 Release='CMSSW_7_3_0_pre1', 0038 0039 # Conditions of the sample: MC, STARTUP, POSTLS1... 0040 # Condition='POSTLS1', 0041 Condition='PRE_LS1', 0042 0043 # 'no' if no pileup, otherwise set spacing 0044 PileUp='50ns', 0045 #PileUp='no', 0046 0047 # If True use Fastsim, else use Fullsim 0048 FastSim=False, 0049 0050 # Where to get the root file from. Possible values 0051 # * WEB: Take root files from the MuonPOG Validation repo on the web 0052 # * CASTOR: Copy root files from castor 0053 # * GUI: Copy root files from the DQM GUI server 0054 # By default, if the root files are already in the local area, 0055 # they won't be overwritten 0056 0057 GetFilesFrom='GUI', 0058 0059 # Base URL of the DQM GUI repository 0060 DqmGuiBaseRepo='https://cmsweb.cern.ch/dqm/relval/data/browse/ROOT/RelVal/', 0061 # DqmGuiRepository='https://cmsweb.cern.ch/dqm/dev/data/browse/Development/RelVal/', 0062 # DqmGuiRepository='https://cmsweb.cern.ch/dqm/offline/data/browse/ROOT/RelVal/CMSSW_4_3_x/', 0063 0064 # Location of Castor repository 0065 CastorRepository = '/castor/cern.ch/user/a/aperrott/ValidationRecoMuon', 0066 0067 # These are only needed if you copy any root file from the DQM GUI. 0068 # See GetLabel function for more details 0069 #Label='70_V6_corrHARV', 0070 Label='72_V16', 0071 0072 # ??? 0073 Format='DQMIO', 0074 #Format='GEN-SIM-RECO', 0075 0076 # Minor Version 0077 Version='v1' 0078 ) 0079 0080 0081 # 0082 # Information about the reference release. 0083 # We only need to set the variables than are different from the new release 0084 # 0085 RefParams = dict( 0086 Condition='PRE_LS1', 0087 Type='Ref', 0088 Release='CMSSW_7_2_0', 0089 #Label='70_V6_AlcaCSA14', 0090 Label='72_V16', 0091 Version='v2' 0092 ) 0093 0094 # 0095 # ??? 0096 # 0097 ValidateHLT = True 0098 ValidateRECO = True 0099 ValidateISO = True 0100 ValidateDQM = True 0101 0102 # Samples for Validation 0103 0104 # For No PU 0105 # samples= ['RelValSingleMuPt1','RelValSingleMuPt10','RelValSingleMuPt100','RelValSingleMuPt1000','RelValTTbar','RelValZMM','RelValJpsiMM','RelValZpMM_2250_13TeV_Tauola'] 0106 # samples= ['RelValZpMM_2250_13TeV_Tauola'] 0107 0108 # For PU 25 ns and 50 ns 0109 samples= ['RelValTTbar','RelValZMM','RelValZmumuJets_Pt_20_300'] 0110 0111 # For No PU FastSim 0112 # samples=['RelValSingleMuPt10','RelValSingleMuPt100','RelValTTbar'] 0113 0114 ############################################################# 0115
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |
![]() ![]() |