- genevb's home page
- Posts
- 2024
- 2023
- 2022
- September (1)
- 2021
- 2020
- 2019
- 2018
- 2017
- December (1)
- October (3)
- September (1)
- August (1)
- July (2)
- June (2)
- April (2)
- March (2)
- February (1)
- 2016
- November (2)
- September (1)
- August (2)
- July (1)
- June (2)
- May (2)
- April (1)
- March (5)
- February (2)
- January (1)
- 2015
- December (1)
- October (1)
- September (2)
- June (1)
- May (2)
- April (2)
- March (3)
- February (1)
- January (3)
- 2014
- 2013
- 2012
- 2011
- January (3)
- 2010
- February (4)
- 2009
- 2008
- 2005
- October (1)
- My blog
- Post new blog entry
- All blogs
TPC Drift Velocity history
Updated on Wed, 2015-03-25 16:35. Originally created by genevb on 2015-03-25 16:32.
This post is a simple follow-up to this previously shown plot...
West side drift velocities [cm/μs] vs. time [year], as recorded in the offline database:
(notes: laser drift velocities in red, cathode drift velocities in blue; image is displayed at half resolution - open image in new tab/window for better resolution)
Ratio of East/West drift velocities vs. time:
(same notes)
Code:
-Gene
West side drift velocities [cm/μs] vs. time [year], as recorded in the offline database:
(notes: laser drift velocities in red, cathode drift velocities in blue; image is displayed at half resolution - open image in new tab/window for better resolution)
Ratio of East/West drift velocities vs. time:
(same notes)
Code:
mysql -h dbx.star.bnl.gov -P 3316 -C Calibrations_tpc -N -e \ "SELECT UNIX_TIMESTAMP(beginTime),laserDriftVelocityEast,laserDriftVelocityWest,\ cathodeDriftVelocityEast,cathodeDriftVelocityWest FROM tpcDriftVelocity \ WHERE deactive=0 ORDER BY beginTime ASC" >& dvs ... TNtupleD dv("dv","dv","t:dve:dvw:cdve:cdvw"); dv.ReadFile("dvs"); dv.SetAlias("year","(t-946684800)/(3600*24*365)+2000"); gStyle->SetPalette(1);gStyle->SetGridColor(kGray); gStyle->SetOptDate(0);gStyle->SetOptStat(0); dv.SetMarkerStyle(7); dv.SetMarkerColor(2); dv.Draw("dvw:year","dvw>5.40&&year>2000"); dv.SetMarkerColor(4); dv.Draw("cdvw:year","","same"); dv.SetMarkerColor(2); dv.Draw("dve/dvw:year","dvw>5.48&&dve>5.48&&year>2000"); dv.SetMarkerColor(4); dv.Draw("cdve/cdvw:year","cdvw>5.40&&cdve>5.40&&year>2000","same");
-Gene
»
- genevb's blog
- Login or register to post comments