ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/OSUT3Analysis/Configuration/python/histogramDefinitions.py
(Generate patch)

Comparing UserCode/OSUT3Analysis/Configuration/python/histogramDefinitions.py (file contents):
Revision 1.31 by lantonel, Thu May 30 16:51:44 2013 UTC vs.
Revision 1.35 by lantonel, Fri Aug 2 11:20:45 2013 UTC

# Line 48 | Line 48 | MuonHistograms = cms.PSet(
48              bins = cms.untracked.vdouble(100, -3.15, 3.15, 100, -3, 3),
49              inputVariables = cms.vstring("phi","eta"),
50          ),
51 +         cms.PSet (
52 +            name = cms.string("muonsIsoD0"),
53 +            title = cms.string("Muon Iso vs. d_{0}; D0; Iso"),
54 +            bins = cms.untracked.vdouble(50, 0, 0.05, 150, 0, 3),
55 +            inputVariables = cms.vstring("abs(correctedD0)","relPFdBetaIso"),
56 +        ),
57          cms.PSet (
58              name = cms.string("muonD0Vertex"),
59              title = cms.string("Muon d_{0} wrt PV; d_{0} [cm]"),
# Line 117 | Line 123 | MuonHistograms = cms.PSet(
123          cms.PSet (
124              name = cms.string("muonPFdBetaIso"),
125              title = cms.string("Muon PF-based #Delta#beta-corrected Isolation; rel. iso."),
126 <            bins = cms.untracked.vdouble(100, 0, 3),
126 >            bins = cms.untracked.vdouble(150, 0, 3),
127              inputVariables = cms.vstring("relPFdBetaIso"),
128          ),
129  
# Line 129 | Line 135 | MuonHistograms = cms.PSet(
135          ),
136      )
137   )
138 <
138 > ##########################################################################
139 > PhotonHistograms = cms.PSet(
140 >    inputCollection = cms.string("photons"),
141 >    histograms = cms.VPSet (
142 >        cms.PSet (
143 >            name = cms.string("photonPt"),
144 >            title = cms.string("Photon Transverse Momentum; p_{T} [GeV]"),
145 >            bins = cms.untracked.vdouble(100, 0, 500),
146 >            inputVariables = cms.vstring("pt"),
147 >        ),
148 >        cms.PSet (
149 >            name = cms.string("photonEta"),
150 >            title = cms.string("Photon Eta; #eta"),
151 >            bins = cms.untracked.vdouble(100, -3, 3),
152 >            inputVariables = cms.vstring("eta"),
153 >        ),
154 >        cms.PSet (
155 >            name = cms.string("photonGenEta"),
156 >            title = cms.string("Photon Gen. Eta; #eta"),
157 >            bins = cms.untracked.vdouble(100, -3, 3),
158 >            inputVariables = cms.vstring("genEta"),
159 >        ),
160 >        cms.PSet (
161 >            name = cms.string("photonPhi"),
162 >            title = cms.string("Photon Phi; #phi"),
163 >            bins = cms.untracked.vdouble(100, -3.15, 3.15),
164 >            inputVariables = cms.vstring("phi"),
165 >        ),
166 >        cms.PSet (
167 >            name = cms.string("photonEtaPhi"),
168 >            title = cms.string("Photon Eta vs. Phi; #phi; #eta"),
169 >            bins = cms.untracked.vdouble(100, -3.15, 3.15, 100, -3, 3),
170 >            inputVariables = cms.vstring("phi","eta"),
171 >        ),
172 >    )
173 > )
174   ##############################################################################################
175  
176   SecondaryMuonHistograms = cms.PSet(
# Line 500 | Line 541 | ElectronHistograms = cms.PSet(
541          cms.PSet (
542              name = cms.string("electronPFrhoIso"),
543              title = cms.string("Electron PF-based #rho-corrected Isolation; rel. iso."),
544 <            bins = cms.untracked.vdouble(100, 0, 3),
544 >            bins = cms.untracked.vdouble(150, 0, 3),
545              inputVariables = cms.vstring("relPFrhoIso"),
546          ),
547          cms.PSet (
# Line 865 | Line 906 | ElectronMuonHistograms = cms.PSet(
906  
907   ##############################################################################################
908  
909 + MuonPhotonHistograms = cms.PSet(
910 +    inputCollection = cms.string("muon-photon pairs"),
911 +    histograms = cms.VPSet (
912 +        cms.PSet (
913 +            name = cms.string("muonPhotonPt"),
914 +            title = cms.string("Muon-photon Pair Transverse Momentum; p_{T} [GeV]"),
915 +            bins = cms.untracked.vdouble(100, 0, 500),
916 +            inputVariables = cms.vstring("pt"),
917 +        ),
918 +        cms.PSet (
919 +            name = cms.string("muonPhotonInvMass"),
920 +            title = cms.string("Muon-photon Pair Invariant Mass; M_{e#mu} [GeV]"),
921 +            bins = cms.untracked.vdouble(100, 0, 500),
922 +            inputVariables = cms.vstring("invMass"),
923 +        ),
924 +        cms.PSet (
925 +            name = cms.string("muonPhotonDeltaPhi"),
926 +            title = cms.string("Muon-photon Phi Difference; |#Delta(#phi)|"),
927 +            bins = cms.untracked.vdouble(100, 0, 3.15),
928 +            inputVariables = cms.vstring("deltaPhi"),
929 +        ),
930 +        cms.PSet (
931 +            name = cms.string("muonPhotonDeltaEta"),
932 +            title = cms.string("Muon-photon Eta Difference; |#Delta(#eta)|"),
933 +            bins = cms.untracked.vdouble(100, 0, 6),
934 +            inputVariables = cms.vstring("deltaEta"),
935 +        ),
936 +        cms.PSet (
937 +            name = cms.string("muonPhotonDeltaR"),
938 +            title = cms.string("Muon-photon #DeltaR; #DeltaR"),
939 +            bins = cms.untracked.vdouble(100, 0, 6),
940 +            inputVariables = cms.vstring("deltaR"),
941 +        ),
942 +        cms.PSet (
943 +            name = cms.string("muonPhotonThreeDAngle"),
944 +            title = cms.string("Muon-photon 3D angle; 3D angle"),
945 +            bins = cms.untracked.vdouble(100, 0, 3.15),
946 +            inputVariables = cms.vstring("threeDAngle"),
947 +        ),
948 +        cms.PSet (
949 +            name = cms.string("muonPFdBetaIsoVsMuon-photonDeltaR"),
950 +            title = cms.string("Muon PF-based #Delta#beta-corrected Isolation vs Muon-photon DeltaR;|muon-photon #Delta(R)|; muon rel. iso."),
951 +            bins = cms.untracked.vdouble(100, 0, 6, 100, 0, 3),
952 +            inputVariables = cms.vstring("deltaR","muonRelPFdBetaIso"),
953 +        ),
954 +        cms.PSet (
955 +            name = cms.string("muonPFdBetaIsoVsMuon-photonDeltaEta"),
956 +            title = cms.string("Muon PF-based #Delta#beta-corrected Isolation vs Muon-photon DeltaEta; |muon-photon #Delta(#eta)|; muon rel. iso."),
957 +            bins = cms.untracked.vdouble(100, 0, 6, 100, 0, 3),
958 +            inputVariables = cms.vstring("deltaEta","muonRelPFdBetaIso"),
959 +        ),
960 +        cms.PSet (
961 +            name = cms.string("muonPFdBetaIsoVsMuon-photonDeltaPhi"),
962 +            title = cms.string("Muon PF-based #Delta#beta-corrected Isolation vs Muon-photon DeltaPhi; |muon-photon #Delta(#phi)|; muon rel. iso."),
963 +            bins = cms.untracked.vdouble(100, 0, 3.15, 100, 0, 3),
964 +            inputVariables = cms.vstring("deltaPhi","muonRelPFdBetaIso"),
965 +        ),
966 +    )
967 + )
968 +
969 + ##############################################################################################
970 +
971 + ElectronPhotonHistograms = cms.PSet(
972 +    inputCollection = cms.string("electron-photon pairs"),
973 +    histograms = cms.VPSet (
974 +        cms.PSet (
975 +            name = cms.string("electronPhotonPt"),
976 +            title = cms.string("Electron-photon Pair Transverse Momentum; p_{T} [GeV]"),
977 +            bins = cms.untracked.vdouble(100, 0, 500),
978 +            inputVariables = cms.vstring("pt"),
979 +        ),
980 +        cms.PSet (
981 +            name = cms.string("electronPhotonInvMass"),
982 +            title = cms.string("Electron-photon Pair Invariant Mass; M_{e#mu} [GeV]"),
983 +            bins = cms.untracked.vdouble(100, 0, 500),
984 +            inputVariables = cms.vstring("invMass"),
985 +        ),
986 +        cms.PSet (
987 +            name = cms.string("electronPhotonDeltaPhi"),
988 +            title = cms.string("Electron-photon Phi Difference; |#Delta(#phi)|"),
989 +            bins = cms.untracked.vdouble(100, 0, 3.15),
990 +            inputVariables = cms.vstring("deltaPhi"),
991 +        ),
992 +        cms.PSet (
993 +            name = cms.string("electronPhotonDeltaEta"),
994 +            title = cms.string("Electron-photon Eta Difference; |#Delta(#eta)|"),
995 +            bins = cms.untracked.vdouble(100, 0, 6),
996 +            inputVariables = cms.vstring("deltaEta"),
997 +        ),
998 +        cms.PSet (
999 +            name = cms.string("electronPhotonDeltaR"),
1000 +            title = cms.string("Electron-photon #DeltaR; #DeltaR"),
1001 +            bins = cms.untracked.vdouble(100, 0, 6),
1002 +            inputVariables = cms.vstring("deltaR"),
1003 +        ),
1004 +        cms.PSet (
1005 +            name = cms.string("electronPhotonThreeDAngle"),
1006 +            title = cms.string("Electron-photon 3D angle; 3D angle"),
1007 +            bins = cms.untracked.vdouble(100, 0, 3.15),
1008 +            inputVariables = cms.vstring("threeDAngle"),
1009 +        ),
1010 +        cms.PSet (
1011 +            name = cms.string("electronPFrhoIsoVsElectron-photonDeltaR"),
1012 +            title = cms.string("Electron PF-based #Delta#beta-corrected Isolation vs Electron-photon DeltaR;|electron-photon #Delta(R)|; electron rel. iso."),
1013 +            bins = cms.untracked.vdouble(100, 0, 6, 100, 0, 3),
1014 +            inputVariables = cms.vstring("deltaR","electronRelPFrhoIso"),
1015 +        ),
1016 +        cms.PSet (
1017 +            name = cms.string("electronPFrhoIsoVsElectron-photonDeltaEta"),
1018 +            title = cms.string("Electron PF-based #Delta#beta-corrected Isolation vs Electron-photon DeltaEta; |electron-photon #Delta(#eta)|; electron rel. iso."),
1019 +            bins = cms.untracked.vdouble(100, 0, 6, 100, 0, 3),
1020 +            inputVariables = cms.vstring("deltaEta","electronRelPFrhoIso"),
1021 +        ),
1022 +        cms.PSet (
1023 +            name = cms.string("electronPFrhoIsoVsElectron-photonDeltaPhi"),
1024 +            title = cms.string("Electron PF-based #Delta#beta-corrected Isolation vs Electron-photon DeltaPhi; |electron-photon #Delta(#phi)|; electron rel. iso."),
1025 +            bins = cms.untracked.vdouble(100, 0, 3.15, 100, 0, 3),
1026 +            inputVariables = cms.vstring("deltaPhi","electronRelPFrhoIso"),
1027 +        ),
1028 +    )
1029 + )
1030 + ############################################################################################
1031   TauHistograms = cms.PSet(
1032      inputCollection = cms.string("taus"),
1033      histograms = cms.VPSet (
# Line 1007 | Line 1170 | JetHistograms = cms.PSet(
1170              inputVariables = cms.vstring("phi","eta"),
1171          ),
1172          cms.PSet (
1173 +            name = cms.string("jetFlavor"),
1174 +            title = cms.string("Jet Flavor"),
1175 +            bins = cms.untracked.vdouble(42, -21, 21),
1176 +            inputVariables = cms.vstring("flavour"),
1177 +        ),
1178 +        cms.PSet (
1179              name = cms.string("jetCSV"),
1180              title = cms.string("Jet Combined Secondary Vertex B-tagging Discriminant"),
1181              bins = cms.untracked.vdouble(100, -1, 1),
# Line 1015 | Line 1184 | JetHistograms = cms.PSet(
1184      )
1185   )
1186  
1187 + SecondaryJetHistograms = cms.PSet(
1188 +    inputCollection = cms.string("secondary jets"),
1189 +    histograms = cms.VPSet (
1190 +        cms.PSet (
1191 +            name = cms.string("secondaryJetPt"),
1192 +            title = cms.string("Jet Transverse Momentum; p_{T} [GeV]"),
1193 +            bins = cms.untracked.vdouble(100, 0, 500),
1194 +            inputVariables = cms.vstring("pt"),
1195 +        ),
1196 +        cms.PSet (
1197 +            name = cms.string("secondaryJetEta"),
1198 +            title = cms.string("Jet Eta; #eta"),
1199 +            bins = cms.untracked.vdouble(100, -3, 3),
1200 +            inputVariables = cms.vstring("eta"),
1201 +        ),
1202 +        cms.PSet (
1203 +            name = cms.string("secondaryJetPhi"),
1204 +            title = cms.string("Jet Phi; #phi"),
1205 +            bins = cms.untracked.vdouble(100, -3.15, 3.15),
1206 +            inputVariables = cms.vstring("phi"),
1207 +        ),
1208 +        cms.PSet (
1209 +            name = cms.string("secondaryJetCharge"),
1210 +            title = cms.string("Jet Charge; charge"),
1211 +            bins = cms.untracked.vdouble(3, -1.5, 1.5),
1212 +            inputVariables = cms.vstring("charge"),
1213 +        ),
1214 +        cms.PSet (
1215 +            name = cms.string("secondaryJetEtaPhi"),
1216 +            title = cms.string("Jet Eta vs. Phi; #phi; #eta"),
1217 +            bins = cms.untracked.vdouble(100, -3.15, 3.15, 100, -3, 3),
1218 +            inputVariables = cms.vstring("phi","eta"),
1219 +        ),
1220 +        cms.PSet (
1221 +            name = cms.string("secondaryJetFlavor"),
1222 +            title = cms.string("Jet Flavor"),
1223 +            bins = cms.untracked.vdouble(42, -21, 21),
1224 +            inputVariables = cms.vstring("flavour"),
1225 +        ),
1226 +        cms.PSet (
1227 +            name = cms.string("secondaryJetCSV"),
1228 +            title = cms.string("Jet Combined Secondary Vertex B-tagging Discriminant"),
1229 +            bins = cms.untracked.vdouble(100, -1, 1),
1230 +            inputVariables = cms.vstring("btagCombinedSecVertex"),
1231 +        ),
1232 +    )
1233 + )
1234   ##############################################################################################
1235  
1236   DiJetHistograms = cms.PSet(
# Line 1056 | Line 1272 | DiJetHistograms = cms.PSet(
1272              bins = cms.untracked.vdouble(100, 0,500),
1273              inputVariables = cms.vstring("pt"),
1274          ),
1275 +        ## cms.PSet (
1276 +        ##     name = cms.string("diJetDeltaPt"),
1277 +        ##     title = cms.string("Di-jet Transverse Momentum Difference; |p_{T}_{jet1}-p_{T}_{jet2}| [GeV] "),
1278 +        ##     bins = cms.untracked.vdouble(100, 0,500),
1279 +        ##     inputVariables = cms.vstring("absDeltaPt"),  # Variable not available in OSUAnalysis.cc  
1280 +        ## ),
1281 +        cms.PSet (
1282 +            name = cms.string("diJetThreeDAngle"),
1283 +            title = cms.string("Di-jet 3D angle; 3D angle"),
1284 +            bins = cms.untracked.vdouble(100, 0, 3.15),
1285 +            inputVariables = cms.vstring("threeDAngle"),
1286 +        ),
1287 +    )
1288 + )
1289 +
1290 + ##############################################################################################
1291 + JetSecondaryJetHistograms = cms.PSet(
1292 +    inputCollection = cms.string("jet-secondary jet pairs"),
1293 +    histograms = cms.VPSet (
1294 +        cms.PSet (
1295 +            name = cms.string("JetSecondaryJetInvMass"),
1296 +            title = cms.string("Di-jet Invariant Mass; M_{jet-pair} [GeV]"),
1297 +            bins = cms.untracked.vdouble(100, 0, 500),
1298 +            inputVariables = cms.vstring("invMass"),
1299 +        ),
1300 +        cms.PSet (
1301 +            name = cms.string("JetSecondaryJetChargeProduct"),
1302 +            title = cms.string("Di-jet Charge Product; charge_{jet}_{1}*charge_{jet}_{2}"),
1303 +            bins = cms.untracked.vdouble(3, -1.5, 1.5),
1304 +            inputVariables = cms.vstring("chargeProduct"),
1305 +        ),
1306 +        cms.PSet (
1307 +            name = cms.string("JetSecondaryJetDeltaPhi"),
1308 +            title = cms.string("Di-jet Phi Difference; |#Delta(#phi)|"),
1309 +            bins = cms.untracked.vdouble(100, 0, 3.15),
1310 +            inputVariables = cms.vstring("deltaPhi"),
1311 +        ),
1312 +        cms.PSet (
1313 +            name = cms.string("JetSecondaryJetDeltaEta"),
1314 +            title = cms.string("Di-jet Eta Difference; |#Delta(#eta)|"),
1315 +            bins = cms.untracked.vdouble(100, 0, 10),
1316 +            inputVariables = cms.vstring("deltaEta"),
1317 +        ),
1318 +        cms.PSet (
1319 +            name = cms.string("JetSecondaryJetDeltaR"),
1320 +            title = cms.string("Di-jet #DeltaR; #DeltaR"),
1321 +            bins = cms.untracked.vdouble(100, 0, 10),
1322 +            inputVariables = cms.vstring("deltaR"),
1323 +        ),
1324 +        cms.PSet (
1325 +            name = cms.string("JetSecondaryJetPt"),
1326 +            title = cms.string("Di-jet Transverse Momentum ; p_{T}_{jet-pair} [GeV] "),
1327 +            bins = cms.untracked.vdouble(100, 0,500),
1328 +            inputVariables = cms.vstring("pt"),
1329 +        ),
1330          cms.PSet (
1331 <            name = cms.string("diJetDeltaPt"),
1331 >            name = cms.string("JetSecondaryJetDeltaPt"),
1332              title = cms.string("Di-jet Transverse Momentum Difference; |p_{T}_{jet1}-p_{T}_{jet2}| [GeV] "),
1333              bins = cms.untracked.vdouble(100, 0,500),
1334              inputVariables = cms.vstring("absDeltaPt"),
1335          ),
1336          cms.PSet (
1337 <            name = cms.string("diJetThreeDAngle"),
1337 >            name = cms.string("JetSecondaryJetThreeDAngle"),
1338              title = cms.string("Di-jet 3D angle; 3D angle"),
1339              bins = cms.untracked.vdouble(100, 0, 3.15),
1340              inputVariables = cms.vstring("threeDAngle"),
# Line 1071 | Line 1342 | DiJetHistograms = cms.PSet(
1342      )
1343   )
1344  
1074 ##############################################################################################
1075
1345   ElectronJetHistograms = cms.PSet(
1346      inputCollection = cms.string("electron-jet pairs"),
1347      histograms = cms.VPSet (
# Line 1107 | Line 1376 | ElectronJetHistograms = cms.PSet(
1376              inputVariables = cms.vstring("deltaEta"),
1377          ),
1378          cms.PSet (
1379 +            name = cms.string("electronJetDeltaRvselectronJetDeltaEta "),
1380 +            title = cms.string("Electron-jet #DeltaR.vs #Delta(#eta); |#Delta(#eta)|; #DeltaR"),
1381 +            bins = cms.untracked.vdouble(100, 0, 6, 100, 0 ,6),
1382 +            inputVariables = cms.vstring("deltaEta","deltaR"),
1383 +        ),
1384 +        cms.PSet (
1385 +            name = cms.string("electronJetDeltaRvselectronJetDeltaPhi "),
1386 +            title = cms.string("Electron-jet #DeltaR.vs #Delta(#phi); |#Delta(#phi)|; |#DeltaR"),
1387 +            bins = cms.untracked.vdouble(100, 0, 3.15, 100, 0, 6),
1388 +            inputVariables = cms.vstring("deltaPhi","deltaR"),
1389 +        ),
1390 +        cms.PSet (
1391 +            name = cms.string("electronEtavsJetEta "),
1392 +            title = cms.string("Electron Eta.vs Jet Eta; Jet #eta; Electron #eta"),
1393 +            bins = cms.untracked.vdouble(200, -6, 6, 200, -6 ,6),
1394 +            inputVariables = cms.vstring("jetEta","electronEta"),
1395 +        ),
1396 +        cms.PSet (
1397 +            name = cms.string("electronPhivsJetPhi "),
1398 +            title = cms.string("Electron Phi.vs Jet Phi; Jet #phi; Electron #phi"),
1399 +            bins = cms.untracked.vdouble(200, -3.15, 3.15, 200, -3.15 ,3.15),
1400 +            inputVariables = cms.vstring("jetPhi","electronPhi"),
1401 +        ),
1402 +        cms.PSet (
1403              name = cms.string("electronJetDeltaR"),
1404              title = cms.string("Electron-jet #DeltaR; #DeltaR"),
1405              bins = cms.untracked.vdouble(100, 0, 6),
# Line 1157 | Line 1450 | MuonJetHistograms = cms.PSet(
1450              inputVariables = cms.vstring("deltaEta"),
1451          ),
1452          cms.PSet (
1453 +            name = cms.string("muonJetDeltaRvsmuonJetDeltaEta "),
1454 +            title = cms.string("Muon-jet #DeltaR.vs #Delta(eta); |#Delta(#eta)|; #DeltaR"),
1455 +            bins = cms.untracked.vdouble(100, 0, 6, 100, 0 ,6),
1456 +            inputVariables = cms.vstring("deltaEta","deltaR"),
1457 +        ),
1458 +        cms.PSet (
1459 +            name = cms.string("muonJetDeltaRvsmuonJetDeltaPhi "),
1460 +            title = cms.string("Muon-jet #DeltaR.vs #Delta(#phi); |#Delta(#phi)|; #DeltaR"),
1461 +            bins = cms.untracked.vdouble(100, 0, 3.15, 100, 0 ,6),
1462 +            inputVariables = cms.vstring("deltaPhi","deltaR"),
1463 +        ),
1464 +        cms.PSet (
1465 +            name = cms.string("muonEtavsJetEta "),
1466 +            title = cms.string("Muon Eta.vs Jet Eta; Jet #eta; Muon #eta"),
1467 +            bins = cms.untracked.vdouble(200, -6, 6, 200, -6 ,6),
1468 +            inputVariables = cms.vstring("jetEta","muonEta"),
1469 +        ),
1470 +        cms.PSet (
1471 +            name = cms.string("muonPhivsJetPhi "),
1472 +            title = cms.string("Muon Phi.vs Jet Phi; Jet #phi; Muon #phi"),
1473 +            bins = cms.untracked.vdouble(200, -3.15, 3.15, 200, -3.15 ,3.15),
1474 +            inputVariables = cms.vstring("jetPhi","muonPhi"),
1475 +        ),
1476 +        cms.PSet (
1477              name = cms.string("muonJetDeltaR"),
1478              title = cms.string("Muon-jet #DeltaR; #DeltaR"),
1479              bins = cms.untracked.vdouble(100, 0, 6),
# Line 1172 | Line 1489 | MuonJetHistograms = cms.PSet(
1489   )
1490  
1491   ##############################################################################################
1492 <
1492 > MuonSecondaryJetHistograms = cms.PSet(
1493 >    inputCollection = cms.string("muon-secondary jet pairs"),
1494 >    histograms = cms.VPSet (
1495 >        cms.PSet (
1496 >            name = cms.string("muonSecondaryJetPt"),
1497 >            title = cms.string("Muon-Jet Pair Transverse Momentum; p_{T} [GeV]"),
1498 >            bins = cms.untracked.vdouble(100, 0, 500),
1499 >            inputVariables = cms.vstring("pt"),
1500 >        ),
1501 >        cms.PSet (
1502 >            name = cms.string("muonSecondaryJetInvMass"),
1503 >            title = cms.string("Muon-jet Invariant Mass; M_{#mu-jet} [GeV]"),
1504 >            bins = cms.untracked.vdouble(100, 0, 500),
1505 >            inputVariables = cms.vstring("invMass"),
1506 >        ),
1507 >        cms.PSet (
1508 >            name = cms.string("muonSecondaryJetChargeProduct"),
1509 >            title = cms.string("Muon-jet Charge Product; charge_{#mu}*charge_{jet}"),
1510 >            bins = cms.untracked.vdouble(3, -1.5, 1.5),
1511 >            inputVariables = cms.vstring("chargeProduct"),
1512 >        ),
1513 >        cms.PSet (
1514 >            name = cms.string("muonSecondaryJetDeltaPhi"),
1515 >            title = cms.string("Muon-jet Phi Difference; |#Delta(#phi)|"),
1516 >            bins = cms.untracked.vdouble(100, 0, 3.15),
1517 >            inputVariables = cms.vstring("deltaPhi"),
1518 >        ),
1519 >        cms.PSet (
1520 >            name = cms.string("muonSecondaryJetDeltaEta"),
1521 >            title = cms.string("Muon-jet Eta Difference; |#Delta(#eta)|"),
1522 >            bins = cms.untracked.vdouble(100, 0, 6),
1523 >            inputVariables = cms.vstring("deltaEta"),
1524 >        ),
1525 >        cms.PSet (
1526 >            name = cms.string("muonSecondaryJetDeltaRvsmuonSecondaryJetDeltaEta "),
1527 >            title = cms.string("Muon-jet #DeltaR.vs #Delta(eta); |#Delta(#eta)|; #DeltaR"),
1528 >            bins = cms.untracked.vdouble(100, 0, 6, 100, 0 ,6),
1529 >            inputVariables = cms.vstring("deltaEta","deltaR"),
1530 >        ),
1531 >        cms.PSet (
1532 >            name = cms.string("muonSecondaryJetDeltaRvsmuonSecondaryJetDeltaPhi "),
1533 >            title = cms.string("Muon-jet #DeltaR.vs #Delta(#phi); |#Delta(#phi)|; #DeltaR"),
1534 >            bins = cms.untracked.vdouble(100, 0, 3.15, 100, 0 ,6),
1535 >            inputVariables = cms.vstring("deltaPhi","deltaR"),
1536 >        ),
1537 >        cms.PSet (
1538 >            name = cms.string("muonEtavsJetEta "),
1539 >            title = cms.string("Muon Eta.vs Jet Eta; Jet #eta; Muon #eta"),
1540 >            bins = cms.untracked.vdouble(200, -6, 6, 200, -6 ,6),
1541 >            inputVariables = cms.vstring("jetEta","muonEta"),
1542 >        ),
1543 >        cms.PSet (
1544 >            name = cms.string("muonPhivsJetPhi "),
1545 >            title = cms.string("Muon Phi.vs Jet Phi; Jet #phi; Muon #phi"),
1546 >            bins = cms.untracked.vdouble(200, -3.15, 3.15, 200, -3.15 ,3.15),
1547 >            inputVariables = cms.vstring("jetPhi","muonPhi"),
1548 >        ),
1549 >        cms.PSet (
1550 >            name = cms.string("muonSecondaryJetDeltaR"),
1551 >            title = cms.string("Muon-jet #DeltaR; #DeltaR"),
1552 >            bins = cms.untracked.vdouble(100, 0, 6),
1553 >            inputVariables = cms.vstring("deltaR"),
1554 >        ),
1555 >        cms.PSet (
1556 >            name = cms.string("muonSecondaryJetThreeDAngle"),
1557 >            title = cms.string("Muon-jet 3D angle; 3D angle"),
1558 >            bins = cms.untracked.vdouble(100, 0, 3.15),
1559 >            inputVariables = cms.vstring("threeDAngle"),
1560 >        ),
1561 >    )
1562 > )
1563 > ##############################################################################################
1564 > ElectronSecondaryJetHistograms = cms.PSet(
1565 >    inputCollection = cms.string("electron-secondary jet pairs"),
1566 >    histograms = cms.VPSet (
1567 >        cms.PSet (
1568 >            name = cms.string("electronSecondaryJetPt"),
1569 >            title = cms.string("Electron-Jet Pair Transverse Momentum; p_{T} [GeV]"),
1570 >            bins = cms.untracked.vdouble(100, 0, 500),
1571 >            inputVariables = cms.vstring("pt"),
1572 >        ),
1573 >        cms.PSet (
1574 >            name = cms.string("electronSecondaryJetInvMass"),
1575 >            title = cms.string("Electron-jet Invariant Mass; M_{#mu-jet} [GeV]"),
1576 >            bins = cms.untracked.vdouble(100, 0, 500),
1577 >            inputVariables = cms.vstring("invMass"),
1578 >        ),
1579 >        cms.PSet (
1580 >            name = cms.string("electronSecondaryJetChargeProduct"),
1581 >            title = cms.string("Electron-jet Charge Product; charge_{#mu}*charge_{jet}"),
1582 >            bins = cms.untracked.vdouble(3, -1.5, 1.5),
1583 >            inputVariables = cms.vstring("chargeProduct"),
1584 >        ),
1585 >        cms.PSet (
1586 >            name = cms.string("electronSecondaryJetDeltaPhi"),
1587 >            title = cms.string("Electron-jet Phi Difference; |#Delta(#phi)|"),
1588 >            bins = cms.untracked.vdouble(100, 0, 3.15),
1589 >            inputVariables = cms.vstring("deltaPhi"),
1590 >        ),
1591 >        cms.PSet (
1592 >            name = cms.string("electronSecondaryJetDeltaEta"),
1593 >            title = cms.string("Electron-jet Eta Difference; |#Delta(#eta)|"),
1594 >            bins = cms.untracked.vdouble(100, 0, 6),
1595 >            inputVariables = cms.vstring("deltaEta"),
1596 >        ),
1597 >        cms.PSet (
1598 >            name = cms.string("electronSecondaryJetDeltaRvselectronSecondaryJetDeltaEta "),
1599 >            title = cms.string("Electron-jet #DeltaR.vs #Delta(eta); |#Delta(#eta)|; #DeltaR"),
1600 >            bins = cms.untracked.vdouble(100, 0, 6, 100, 0 ,6),
1601 >            inputVariables = cms.vstring("deltaEta","deltaR"),
1602 >        ),
1603 >        cms.PSet (
1604 >            name = cms.string("electronSecondaryJetDeltaRvselectronSecondaryJetDeltaPhi "),
1605 >            title = cms.string("Electron-jet #DeltaR.vs #Delta(#phi); |#Delta(#phi)|; #DeltaR"),
1606 >            bins = cms.untracked.vdouble(100, 0, 3.15, 100, 0 ,6),
1607 >            inputVariables = cms.vstring("deltaPhi","deltaR"),
1608 >        ),
1609 >        cms.PSet (
1610 >            name = cms.string("electronEtavsJetEta "),
1611 >            title = cms.string("Electron Eta.vs Jet Eta; Jet #eta; Electron #eta"),
1612 >            bins = cms.untracked.vdouble(200, -6, 6, 200, -6 ,6),
1613 >            inputVariables = cms.vstring("jetEta","electronEta"),
1614 >        ),
1615 >        cms.PSet (
1616 >            name = cms.string("electronPhivsJetPhi "),
1617 >            title = cms.string("Electron Phi.vs Jet Phi; Jet #phi; Electron #phi"),
1618 >            bins = cms.untracked.vdouble(200, -3.15, 3.15, 200, -3.15 ,3.15),
1619 >            inputVariables = cms.vstring("jetPhi","electronPhi"),
1620 >        ),
1621 >        cms.PSet (
1622 >            name = cms.string("electronSecondaryJetDeltaR"),
1623 >            title = cms.string("Electron-jet #DeltaR; #DeltaR"),
1624 >            bins = cms.untracked.vdouble(100, 0, 6),
1625 >            inputVariables = cms.vstring("deltaR"),
1626 >        ),
1627 >        cms.PSet (
1628 >            name = cms.string("electronSecondaryJetThreeDAngle"),
1629 >            title = cms.string("Electron-jet 3D angle; 3D angle"),
1630 >            bins = cms.untracked.vdouble(100, 0, 3.15),
1631 >            inputVariables = cms.vstring("threeDAngle"),
1632 >        ),
1633 >    )
1634 > )
1635 > #################################################################################
1636 > PhotonSecondaryJetHistograms = cms.PSet(
1637 >    inputCollection = cms.string("photon-secondary jet pairs"),
1638 >    histograms = cms.VPSet (
1639 >        cms.PSet (
1640 >            name = cms.string("photonSecondaryJetPt"),
1641 >            title = cms.string("Photon-Jet Pair Transverse Momentum; p_{T} [GeV]"),
1642 >            bins = cms.untracked.vdouble(100, 0, 500),
1643 >            inputVariables = cms.vstring("pt"),
1644 >        ),
1645 >        cms.PSet (
1646 >            name = cms.string("photonSecondaryJetInvMass"),
1647 >            title = cms.string("Photon-jet Invariant Mass; M_{#mu-jet} [GeV]"),
1648 >            bins = cms.untracked.vdouble(100, 0, 500),
1649 >            inputVariables = cms.vstring("invMass"),
1650 >        ),
1651 >        cms.PSet (
1652 >            name = cms.string("photonSecondaryJetDeltaPhi"),
1653 >            title = cms.string("Photon-jet Phi Difference; |#Delta(#phi)|"),
1654 >            bins = cms.untracked.vdouble(100, 0, 3.15),
1655 >            inputVariables = cms.vstring("deltaPhi"),
1656 >        ),
1657 >        cms.PSet (
1658 >            name = cms.string("photonSecondaryJetDeltaEta"),
1659 >            title = cms.string("Photon-jet Eta Difference; |#Delta(#eta)|"),
1660 >            bins = cms.untracked.vdouble(100, 0, 6),
1661 >            inputVariables = cms.vstring("deltaEta"),
1662 >        ),
1663 >        cms.PSet (
1664 >            name = cms.string("photonSecondaryJetDeltaRvsphotonSecondaryJetDeltaEta "),
1665 >            title = cms.string("Photon-jet #DeltaR.vs #Delta(eta); |#Delta(#eta)|; #DeltaR"),
1666 >            bins = cms.untracked.vdouble(100, 0, 6, 100, 0 ,6),
1667 >            inputVariables = cms.vstring("deltaEta","deltaR"),
1668 >        ),
1669 >        cms.PSet (
1670 >            name = cms.string("photonSecondaryJetDeltaRvsphotonSecondaryJetDeltaPhi "),
1671 >            title = cms.string("Photon-jet #DeltaR.vs #Delta(#phi); |#Delta(#phi)|; #DeltaR"),
1672 >            bins = cms.untracked.vdouble(100, 0, 3.15, 100, 0 ,6),
1673 >            inputVariables = cms.vstring("deltaPhi","deltaR"),
1674 >        ),
1675 >        cms.PSet (
1676 >            name = cms.string("photonEtavsJetEta "),
1677 >            title = cms.string("Photon Eta.vs Jet Eta; Jet #eta; Photon #eta"),
1678 >            bins = cms.untracked.vdouble(200, -6, 6, 200, -6 ,6),
1679 >            inputVariables = cms.vstring("jetEta","photonEta"),
1680 >        ),
1681 >        cms.PSet (
1682 >            name = cms.string("photonPhivsJetPhi "),
1683 >            title = cms.string("Photon Phi.vs Jet Phi; Jet #phi; Photon #phi"),
1684 >            bins = cms.untracked.vdouble(200, -3.15, 3.15, 200, -3.15 ,3.15),
1685 >            inputVariables = cms.vstring("jetPhi","photonPhi"),
1686 >        ),
1687 >        cms.PSet (
1688 >            name = cms.string("photonSecondaryJetDeltaR"),
1689 >            title = cms.string("Photon-jet #DeltaR; #DeltaR"),
1690 >            bins = cms.untracked.vdouble(100, 0, 6),
1691 >            inputVariables = cms.vstring("deltaR"),
1692 >        ),
1693 >        cms.PSet (
1694 >            name = cms.string("photonSecondaryJetThreeDAngle"),
1695 >            title = cms.string("Photon-jet 3D angle; 3D angle"),
1696 >            bins = cms.untracked.vdouble(100, 0, 3.15),
1697 >            inputVariables = cms.vstring("threeDAngle"),
1698 >        ),
1699 >    )
1700 > )
1701 > ############################################################################
1702 > PhotonJetHistograms = cms.PSet(
1703 >    inputCollection = cms.string("photon-jet pairs"),
1704 >    histograms = cms.VPSet (
1705 >        cms.PSet (
1706 >            name = cms.string("photonJetPt"),
1707 >            title = cms.string("Photon-Jet Pair Transverse Momentum; p_{T} [GeV]"),
1708 >            bins = cms.untracked.vdouble(100, 0, 500),
1709 >            inputVariables = cms.vstring("pt"),
1710 >        ),
1711 >        cms.PSet (
1712 >            name = cms.string("photonJetInvMass"),
1713 >            title = cms.string("Photon-jet Invariant Mass; M_{#mu-jet} [GeV]"),
1714 >            bins = cms.untracked.vdouble(100, 0, 500),
1715 >            inputVariables = cms.vstring("invMass"),
1716 >        ),
1717 >        cms.PSet (
1718 >            name = cms.string("photonJetDeltaPhi"),
1719 >            title = cms.string("Photon-jet Phi Difference; |#Delta(#phi)|"),
1720 >            bins = cms.untracked.vdouble(100, 0, 3.15),
1721 >            inputVariables = cms.vstring("deltaPhi"),
1722 >        ),
1723 >        cms.PSet (
1724 >            name = cms.string("photonJetDeltaEta"),
1725 >            title = cms.string("Photon-jet Eta Difference; |#Delta(#eta)|"),
1726 >            bins = cms.untracked.vdouble(100, 0, 6),
1727 >            inputVariables = cms.vstring("deltaEta"),
1728 >        ),
1729 >        cms.PSet (
1730 >            name = cms.string("photonJetDeltaRvsphotonJetDeltaEta "),
1731 >            title = cms.string("Photon-jet #DeltaR.vs #Delta(eta); |#Delta(#eta)|; #DeltaR"),
1732 >            bins = cms.untracked.vdouble(100, 0, 6, 100, 0 ,6),
1733 >            inputVariables = cms.vstring("deltaEta","deltaR"),
1734 >        ),
1735 >        cms.PSet (
1736 >            name = cms.string("photonJetDeltaRvsphotonJetDeltaPhi "),
1737 >            title = cms.string("Photon-jet #DeltaR.vs #Delta(#phi); |#Delta(#phi)|; #DeltaR"),
1738 >            bins = cms.untracked.vdouble(100, 0, 3.15, 100, 0 ,6),
1739 >            inputVariables = cms.vstring("deltaPhi","deltaR"),
1740 >        ),
1741 >        cms.PSet (
1742 >            name = cms.string("photonEtavsJetEta "),
1743 >            title = cms.string("Photon Eta.vs Jet Eta; Jet #eta; Photon #eta"),
1744 >            bins = cms.untracked.vdouble(200, -6, 6, 200, -6 ,6),
1745 >            inputVariables = cms.vstring("jetEta","photonEta"),
1746 >        ),
1747 >        cms.PSet (
1748 >            name = cms.string("photonPhivsJetPhi "),
1749 >            title = cms.string("Photon Phi.vs Jet Phi; Jet #phi; Photon #phi"),
1750 >            bins = cms.untracked.vdouble(200, -3.15, 3.15, 200, -3.15 ,3.15),
1751 >            inputVariables = cms.vstring("jetPhi","photonPhi"),
1752 >        ),
1753 >        cms.PSet (
1754 >            name = cms.string("photonJetDeltaR"),
1755 >            title = cms.string("Photon-jet #DeltaR; #DeltaR"),
1756 >            bins = cms.untracked.vdouble(100, 0, 6),
1757 >            inputVariables = cms.vstring("deltaR"),
1758 >        ),
1759 >        cms.PSet (
1760 >            name = cms.string("photonJetThreeDAngle"),
1761 >            title = cms.string("Photon-jet 3D angle; 3D angle"),
1762 >            bins = cms.untracked.vdouble(100, 0, 3.15),
1763 >            inputVariables = cms.vstring("threeDAngle"),
1764 >        ),
1765 >    )
1766 > )
1767 > #######################################################################################
1768   MCParticleHistograms = cms.PSet(
1769      inputCollection = cms.string("mcparticles"),
1770      histograms = cms.VPSet (
1771          cms.PSet (
1772 +            name = cms.string("mcparticlePt"),
1773 +            title = cms.string("MCparticle Transverse Momentum; p_{T} [GeV]"),
1774 +            bins = cms.untracked.vdouble(100, 0, 500),
1775 +            inputVariables = cms.vstring("pt"),
1776 +        ),
1777 +        cms.PSet (
1778 +            name = cms.string("mcparticleEta"),
1779 +            title = cms.string("MCparticle Eta; #eta"),
1780 +            bins = cms.untracked.vdouble(100, -3, 3),
1781 +            inputVariables = cms.vstring("eta"),
1782 +        ),
1783 +        cms.PSet (
1784 +            name = cms.string("mcparticleID"),
1785 +            title = cms.string("MCparticle ID; pdg ID"),
1786 +            bins = cms.untracked.vdouble(2000, 0, 2000),
1787 +            inputVariables = cms.vstring("abs(id)"),
1788 +        ),
1789 +        cms.PSet (
1790 +            name = cms.string("mcparticleMotherId"),
1791 +            title = cms.string("MCparticle Mother ID; pdg ID of mother"),
1792 +            bins = cms.untracked.vdouble(2000, 0, 2000),
1793 +            inputVariables = cms.vstring("abs(motherId)"),
1794 +        ),
1795 +        cms.PSet (
1796 +            name = cms.string("mcparticleGrandMotherId"),
1797 +            title = cms.string("MCparticle Grandmother ID; pdg ID of grandmother"),
1798 +            bins = cms.untracked.vdouble(2000, 0, 2000),
1799 +            inputVariables = cms.vstring("abs(grandMotherId)"),
1800 +        ),
1801 +        cms.PSet (
1802 +            name = cms.string("mcparticleStatus"),
1803 +            title = cms.string("MCparticle Status; status"),
1804 +            bins = cms.untracked.vdouble(3, 1, 4),
1805 +            inputVariables = cms.vstring("status"),
1806 +        ),
1807 +        cms.PSet (
1808              name = cms.string("mcparticleD0"),
1809 <            title = cms.string("MCparticle d_{0}; d_{0} [cm]"),
1810 <            bins = cms.untracked.vdouble(100, -0.05, 0.05),
1811 <            inputVariables = cms.vstring("d0"),
1809 >            title = cms.string("MCParticle d_{0} wrt PV; d_{0} [cm]"),
1810 >            bins = cms.untracked.vdouble(40000, -20, 20),
1811 >            inputVariables = cms.vstring("d0")
1812          ),
1813          cms.PSet (
1814              name = cms.string("mcparticleAbsD0"),
1815 <            title = cms.string("MCparticle d_{0}; |d_{0}| [cm]"),
1815 >            title = cms.string("MCParticle |d_{0}| wrt PV; |d_{0}| [cm]"),
1816 >            bins = cms.untracked.vdouble(40000, 0, 20),
1817 >            inputVariables = cms.vstring("abs(d0)")
1818 >        ),
1819 >        cms.PSet (
1820 >            name = cms.string("mcparticleD0S"),
1821 >            title = cms.string("MCParticle |d_{0}| wrt PV; |d_{0}| [cm]"),
1822              bins = cms.untracked.vdouble(100, 0, 0.05),
1823 <            inputVariables = cms.vstring("abs(d0)"),
1823 >            inputVariables = cms.vstring("abs(d0)")
1824 >        ),
1825 >        cms.PSet (
1826 >            name = cms.string("mcparticleD0M"),
1827 >            title = cms.string("MCParticle |d_{0}| wrt PV; |d_{0}| [cm]"),
1828 >            bins = cms.untracked.vdouble(100, 0, 0.5),
1829 >            inputVariables = cms.vstring("abs(d0)")
1830 >        ),
1831 >        cms.PSet (
1832 >            name = cms.string("mcparticleD0L"),
1833 >            title = cms.string("MCParticle |d_{0}| wrt PV; |d_{0}| [cm]"),
1834 >            bins = cms.untracked.vdouble(100, 0, 5),
1835 >            inputVariables = cms.vstring("abs(d0)")
1836          ),
1837          cms.PSet (
1838 +            name = cms.string("mcparticleD0XL"),
1839 +            title = cms.string("MCParticle |d_{0}| wrt PV; |d_{0}| [cm]"),
1840 +            bins = cms.untracked.vdouble(100, 0, 50),
1841 +            inputVariables = cms.vstring("abs(d0)")
1842 +        ),  
1843 +        cms.PSet (
1844              name = cms.string("mcparticleDz"),
1845              title = cms.string("MCparticle d_{z}; d_{z} [cm]"),
1846              bins = cms.untracked.vdouble(100, -0.5, 0.5),
# Line 1343 | Line 1995 | EventHistograms = cms.PSet(
1995      inputCollection = cms.string("events"),
1996      histograms = cms.VPSet (
1997          cms.PSet (
1998 +            name = cms.string("ht"),
1999 +            title = cms.string("H_{T}; #Sigma p_{T} selected jets [GeV]"),
2000 +            bins = cms.untracked.vdouble(100, 0, 500),
2001 +            inputVariables = cms.vstring("ht"),
2002 +        ),
2003 +        cms.PSet (
2004 +            name = cms.string("unfilteredHt"),
2005 +            title = cms.string("Unfiltered H_{T}; #Sigma p_{T} all jets [GeV]"),
2006 +            bins = cms.untracked.vdouble(100, 0, 500),
2007 +            inputVariables = cms.vstring("unfilteredHt"),
2008 +        ),
2009 +        cms.PSet (
2010              name = cms.string("puScaleFactor"),
2011              title = cms.string("Pileup Scale Factor;pileup weight"),
2012              bins = cms.untracked.vdouble(100, 0, 5),
# Line 1355 | Line 2019 | EventHistograms = cms.PSet(
2019              inputVariables = cms.vstring("muonScaleFactor"),
2020          ),
2021          cms.PSet (
2022 +            name = cms.string("bTagScaleFactor"),
2023 +            title = cms.string("Btag Scale Factor;btag weight"),
2024 +            bins = cms.untracked.vdouble(100, 0.5, 1.5),
2025 +            inputVariables = cms.vstring("bTagScaleFactor"),
2026 +        ),
2027 +        cms.PSet (
2028              name = cms.string("electronScaleFactor"),
2029              title = cms.string("Electron Scale Factor;electron weight"),
2030              bins = cms.untracked.vdouble(100, 0.5, 1.5),

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines