CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
SplitLinear.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 #from G.Benelli and Arun Mittal
3 # 2016 November 17
4 #Quick script to split a large sqlite file (holding all of our Noise payloads (Run1+Run2) into a set of smaller ones.
5 from __future__ import print_function
6 import subprocess
7 IOVs=[]
8 for line in subprocess.Popen("conddb --noLimit --db Linear.db list EcalLinearCorrections_from2011_offline",shell=True,stdout=subprocess.PIPE,stderr=subprocess.STDOUT).stdout.readlines():
9  if "EcalTimeDependentCorrections" in line:
10 # IOVs.append(line.split()[0]) # for run based IOVs
11  IOVs.append((line.split()[2].strip(')')).strip('(')) # for timestamp based IOVs
12 print(IOVs)
13 print("There are %s IOVs!"%len(IOVs))
14 #Prepare the conddb_import commands template:
15 #CommandTemplate="conddb_import -f sqlite:SiStripNoise_GR10_v3_offline.db -c sqlite:SiStripNoise_GR10_v3_offline_%s_%s.db -i SiStripNoise_GR10_v4_offline -t SiStripNoise_GR10_v4_offline -b %s -e %s"
16 
17 #Let's assemble the commands now!
18 #Let's pick IOVs every 200:
19 RelevantIOVs=[(IOV,IOVs[IOVs.index(IOV)+199],IOVs[IOVs.index(IOV)+200]) for IOV in IOVs if IOVs.index(IOV)==0 or ((IOVs.index(IOV))%200==0 and (IOVs.index(IOV)+200)<len(IOVs))]
20 
21 RelevantIOVs.append((RelevantIOVs[-1][2],IOVs[-1],IOVs[-1]))
22 
23 print(RelevantIOVs)
24 for i,splitIOVs in enumerate(RelevantIOVs):
25  begin=splitIOVs[0]
26  end=splitIOVs[1]
27  upperLimit=splitIOVs[1]
28  print(i,begin,end,upperLimit)
29  command = "conddb_import -f sqlite:Linear.db -c sqlite:Linear_"+str(begin)+"_"+str(end)+".db -i EcalLinearCorrections_from2011_offline -t EcalLinearCorrections_from2011_offline -b "+str(begin)+" -e "+str(end)
30  print(command)
31 
32  #Now if we want to execute it inside Python uncomment the following two lines:
33  STDOUT=subprocess.Popen(command,shell=True,stdout=subprocess.PIPE,stderr=subprocess.STDOUT).stdout.read()
34  print(STDOUT)
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:47
#define str(s)