ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/VHbbAnalysis/additionalFiles/DataCards/scalerWH.py
Revision: 1.2
Committed: Sat Oct 27 20:34:50 2012 UTC (12 years, 6 months ago) by madfish
Content type: text/x-python
Branch: MAIN
Changes since 1.1: +22 -22 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 madfish 1.1 #! /usr/bin/env python
2    
3    
4     import sys
5     import os
6     import commands
7     import string
8    
9 madfish 1.2 xSec7ZH = [0.4721,0.4655,0.4589,0.4525,0.4462,0.4400,0.4340,0.4280,0.4221,0.4164, 0.4107, 0.4052, 0.3998, 0.3945, 0.3893, 0.3842, 0.3791, 0.3742, 0.3693, 0.3645, 0.3598, 0.3551, 0.3505, 0.3459, 0.3414, 0.3370, 0.3326, 0.3283, 0.3241, 0.3199, 0.3158, 0.3117, 0.3077, 0.3038, 0.2999, 0.2961, 0.2923, 0.2886, 0.2849, 0.2813, 0.2778, 0.2743, 0.2709, 0.2675, 0.2642, 0.2609, 0.2577, 0.2545, 0.2514, 0.2483, 0.2453, 0.31908, 0.31826, 0.31744, 0.31662, 0.314980, 0.314160, 0.313340, 0.312520, 0.310900, 0.310100, 0.309300, 0.308500, 0.306920, 0.306140, 0.305360, 0.304580]
10 madfish 1.1
11    
12    
13 madfish 1.2 xSec7WH = [0.8754,0.8623,0.8495,0.8368,0.8244, 0.8122, 0.8003, 0.7885, 0.7770, 0.7657, 0.7546, 0.7439, 0.7333, 0.7230, 0.7129, 0.7030, 0.6933, 0.6837, 0.6744, 0.6651, 0.6561, 0.6472, 0.6384, 0.6297, 0.6212, 0.6129, 0.6046, 0.5965, 0.5885, 0.5806, 0.5729, 0.5652, 0.5576, 0.5501, 0.5428, 0.5355, 0.5284, 0.5213, 0.5144, 0.5075, 0.5008, 0.4942, 0.4877, 0.4813, 0.4749, 0.4687, 0.4626, 0.4566, 0.4506, 0.4448, 0.4390,0.579060,0.577520,0.575980,0.574440,0.571360,0.569820,0.568280,0.566740,0.563680,0.562160,0.560640,0.559120,0.556100,0.554600,0.553100,0.551600]
14    
15     xSec8ZH = [0.5869,0.5788,0.5708,0.5629,0.5552,0.5476,0.5402,0.5329,0.5258,0.5187,0.5117,0.5049,0.4981,0.4916,0.4850,0.4787,0.4724,0.4662,0.4602,0.4542,0.4483,0.4426,0.4368,0.4312,0.4257,0.4203,0.4150,0.4096,0.4044,0.3993,0.3943,0.3893,0.3843,0.3794,0.3746,0.3699,0.3652,0.3606,0.3561,0.3516,0.3473,0.3430,0.3388,0.3347,0.3306,0.3266,0.3226,0.3188,0.3149,0.3112,0.3074,0.39830,0.39730,0.39630,0.39530,0.39330,0.39230,0.39130,0.39030,0.38830,0.38730,0.38630,0.38530,0.38332,0.38234,0.38136,0.38038]
16    
17     xSec8WH = [1.060 ,1.045 ,1.030 ,1.015 , 0.9998, 0.9852, 0.9709, 0.9570, 0.9432, 0.9297, 0.9165, 0.9035, 0.8907, 0.8782, 0.8659, 0.8538, 0.8420, 0.8303, 0.8187, 0.8075, 0.7966, 0.7859, 0.7753, 0.7649, 0.7547, 0.7446, 0.7347, 0.7249, 0.7154, 0.7060, 0.6966, 0.6873, 0.6782, 0.6691, 0.6602, 0.6515, 0.6429, 0.6344, 0.6260, 0.6177, 0.6095, 0.6015, 0.5936, 0.5859, 0.5783, 0.5708, 0.5634, 0.5562, 0.5491, 0.5420, 0.5351, 0.70412,0.70224,0.70036,0.69848,0.69474,0.69288,0.69102,0.68916,0.68548,0.68366,0.68184,0.68002,0.67638,0.67456,0.67274,0.67092]
18 madfish 1.1
19    
20 madfish 1.2 xSec = xSec8WH
21 madfish 1.1
22 madfish 1.2 mass=["110","110.5","111","111.5","112","112.5","113","113.5","114","114.5","115","115.5","116","116.5","117","117.5","118","118.5","119","119.5","120","120.5","121","121.5","122","122.5","123","123.5","124","124.5","125","125.5","126","126.5","127","127.5","128","128.5","129","129.5","130","130.5","131","131.5","132","132.5","133","133.5","134","134.5","135","124.6","124.7","124.8","124.9","125.1","125.2","125.3","125.4","125.6","125.7","125.8","125.9","126.1","126.2","126.3","126.4"];
23 madfish 1.1
24    
25     files=[
26 madfish 1.2 "WH_2bin_110.txt",
27     "WH_2bin_115.txt",
28     "WH_2bin_120.txt",
29     "vhbb_Wln_7TeV.txt",
30     "WH_2bin_130.txt",
31     "WH_2bin_135.txt"
32 madfish 1.1 ]
33    
34    
35    
36     def Process(file, toMass, fromMass):
37     newcard = file.replace( '.txt', "_.txt" )
38     newcard = newcard.replace( '.txt', mass[toMass] )
39     newcard += ".txt"
40     os.system('more %s | grep rate > a' % file)
41     os.system("more a | awk '{print $2}' > aVH1")
42     os.system("more a | awk '{print $11}' > aVH2")
43     os.system("more a | awk '{print $20}' > aVH3")
44     os.system("more a | awk '{print $29}' > aVH4")
45    
46     fVH1 = open("aVH1", "r")
47     fVH2 = open("aVH2", "r")
48     fVH3 = open("aVH3", "r")
49     fVH4 = open("aVH4", "r")
50    
51     sVH1 = fVH1.read().rstrip('\n')
52     sVH2 = fVH2.read().rstrip('\n')
53     sVH3 = fVH3.read().rstrip('\n')
54     sVH4 = fVH4.read().rstrip('\n')
55    
56     VH1 = float(sVH1)
57     VH2 = float(sVH2)
58     VH3 = float(sVH3)
59     VH4 = float(sVH4)
60    
61     bVH1 = (xSec[toMass]/xSec[fromMass])*VH1
62     bVH2 = (xSec[toMass]/xSec[fromMass])*VH2
63     bVH3 = (xSec[toMass]/xSec[fromMass])*VH3
64     bVH4 = (xSec[toMass]/xSec[fromMass])*VH4
65    
66     os.system("sed 's/%s/%f/g' a > b" % (sVH1,bVH1))
67     os.system("sed -i 's/%s/%f/g' b" % (sVH2,bVH2))
68     os.system("sed -i 's/%s/%f/g' b" % (sVH3,bVH3))
69     os.system("sed -i 's/%s/%f/g' b" % (sVH4,bVH4))
70    
71     fRO = open("a", "r")
72     sRO = fRO.read().rstrip('\n')
73     fRF = open("b", "r")
74     sRF = fRF.read().rstrip('\n')
75     os.system("sed 's/%s/%s/g' %s > %s" % (sRO,sRF,file,newcard))
76 madfish 1.2 os.system("sed -i 's/WmunuH_110_NWS.root/WmunuH_110_%s.root/g' %s " % (mass[toMass],newcard))
77     os.system("sed -i 's/WmunuH_115_NWS.root/WmunuH_115_%s.root/g' %s " % (mass[toMass],newcard))
78     os.system("sed -i 's/WmunuH_120_NWS.root/WmunuH_120_%s.root/g' %s " % (mass[toMass],newcard))
79     os.system("sed -i 's/WmunuH_125_NWS.root/WmunuH_125_%s.root/g' %s " % (mass[toMass],newcard))
80     os.system("sed -i 's/WmunuH_130_NWS.root/WmunuH_130_%s.root/g' %s " % (mass[toMass],newcard))
81     os.system("sed -i 's/WmunuH_135_NWS.root/WmunuH_135_%s.root/g' %s " % (mass[toMass],newcard))
82 madfish 1.1 os.system("sed -i 's/WenuH_110_NWS.root/WenuH_110_%s.root/g' %s " % (mass[toMass],newcard))
83     os.system("sed -i 's/WenuH_115_NWS.root/WenuH_115_%s.root/g' %s " % (mass[toMass],newcard))
84     os.system("sed -i 's/WenuH_120_NWS.root/WenuH_120_%s.root/g' %s " % (mass[toMass],newcard))
85     os.system("sed -i 's/WenuH_125_NWS.root/WenuH_125_%s.root/g' %s " % (mass[toMass],newcard))
86     os.system("sed -i 's/WenuH_130_NWS.root/WenuH_130_%s.root/g' %s " % (mass[toMass],newcard))
87     os.system("sed -i 's/WenuH_135_NWS.root/WenuH_135_%s.root/g' %s " % (mass[toMass],newcard))
88     os.system("echo %s written" % (newcard))
89    
90     Process(files[0],0,0);
91     Process(files[0],1,0);
92     Process(files[0],2,0);
93     Process(files[0],3,0);
94     Process(files[0],4,0);
95    
96     for x in range(5,15):
97     Process(files[1], x , 10);
98     for x in range(15,25):
99     Process(files[2], x , 20);
100     for x in range(25,35):
101     Process(files[3], x , 30);
102     for x in range(35,45):
103     Process(files[4], x , 40);
104     for x in range(45,51):
105     Process(files[5], x , 50);
106 madfish 1.2 for x in range(51,67):
107     Process(files[3], x , 30);