Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Zll Analysis on Data: technical documentation | ||||||||
Line: 10 to 10 | ||||||||
Datasets / Good Runs ListIn order to use GoodRunLists in standalone ROOT / C++ you can follow the instructions on the twiki page https://twiki.cern.ch/twiki/bin/viewauth/Atlas/GoodRunsListsTutorial#Running_in_Root_or_python![]() | ||||||||
Changed: | ||||||||
< < | ssvn co svn+ssh://svn.cern.ch/reps/atlasoff/DataQuality/GoodRunsLists/tags/GoodRunsLists-00-00-84 | |||||||
> > | svn co svn+ssh://svn.cern.ch/reps/atlasoff/DataQuality/GoodRunsLists/tags/GoodRunsLists-00-00-84 | |||||||
cd GoodRunsLists-00-00-84/cmt make -f Makefile.Standalone |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Added: | ||||||||
> > |
Zll Analysis on Data: technical documentationSome documentation on experiences of running on data, especially useful for running on D3PDs outside of the Athena framework. My talk in Atlas meeting 15/10/10 (with corrections) Gla_Zll_talk_2.pdf I'll try and document the various components of the analysis below, link to where I found information and describe how I solved problems not covered in the Twiki. You can look at my code at https://ppes8.physics.gla.ac.uk/trac/user/browser/ncedwards/Zll/trunk![]() Datasets / Good Runs ListIn order to use GoodRunLists in standalone ROOT / C++ you can follow the instructions on the twiki page https://twiki.cern.ch/twiki/bin/viewauth/Atlas/GoodRunsListsTutorial#Running_in_Root_or_python![]() ssvn co svn+ssh://svn.cern.ch/reps/atlasoff/DataQuality/GoodRunsLists/tags/GoodRunsLists-00-00-84 cd GoodRunsLists-00-00-84/cmt make -f Makefile.StandaloneThen when you compile your main program, link to the Standalone library generated, for example your Makefile might look a bit like this: CC=g++ CCFLAGS = -O3 -g3 -m32 -fPIC -enable-shared ROOTINCS=`root-config --cflags` ROOTLIBS=`root-config --libs` GRLLIBDIR = GoodRunsLists/StandAlone GRLDIR = GoodRunsLists/ all: Zll Zll: Zll.cpp ConfigFile.cpp ${CC} $(CCFLAGS) -c -o Zll.o ${FLAGS} Zll.cpp ${ROOTINCS} -I${GRLDIR}/ ${CC} $(CCFLAGS) ${ROOTLIBS} -lMathCore -lTreePlayer -L${GRLLIBDIR} -lGoodRunsLists Zll.o -o ZllThen before running your executable add the location to the GoodRunsList.so file to your LD_LIBRARY_PATH environment variable, e.g.: export GRL_LIB_DIR=${PWD}/GoodRunsLists/StandAlone export LD_LIBRARY_PATH=${GRL_LIB_DIR}:${LD_LIBRARY_PATH}There may well be a better way of doing this, I'm not an expert at this sort of thing! Important caveats!
Good Run List Related links
Luminosity CalculationThe LumiCalcTool takes care of all of this for you! You supply a Good Run List of events ran over and trigger used → LumiCalc tool calculates the integrated luminosity. You need to be careful that you have run over every single lumi block in the GRL you supply to the LumiCalcTool, otherwise the result will be wrong. You can use the GoodRunsList package to write out a list of LumiBlock run over, then use this to calculate the integrated Luminosity. You need to be careful if using L1 triggers that not prescaled at HLT (see Trigger section on ways you could check this). There are 2 main ways to use the LumiCalcTool. You can use the web interface, which is quick and easy - it's at https://atlas-datasummary.cern.ch/lumicalc/![]() ![]() TriggerThere are various web tools available for investigating the trigger configuration. http://atlas-service-db-runlist.web.cern.ch/atlas-service-db-runlist/cgi-bin/runDetails.py?run=160387![]() ![]() Object Definitions
MET cleaningThis basically involves removing events containing 'fake' jets from calorimeter noise or cosmics, as these introduce errors into the MET calculation. Some groups do this before th D3PD creation stage, so you may not need to do it in your analysis.
Z data analysis related links
Z related Data Notes* Measurement of the Zll production cross section in proton-proton collisions at s = 7 TeV with the ATLAS detector https://atlas.web.cern.ch/Atlas/GROUPS/PHYSICS/CONFNOTES/ATLAS-CONF-2010-076/ATLAS-CONF-2010-076.pdf![]() ![]() ![]()
|