Skip to content

Commit 120d180

Browse files
author
GitHubProgramCode
committed
This gets rid of all of the warnings from the previous printout and tries to populate the histograms.
1 parent 1865ee1 commit 120d180

File tree

806 files changed

+1403
-26
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

806 files changed

+1403
-26
lines changed

.RootCoreBin

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
RootCoreBin

Root/MyxAODAnalysis.cxx

+30-17
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,19 @@
4040
const char *APP_NAME = "validationPlots";
4141
const char *OutputFile = "validation.root";
4242

43+
// // Book the histos
44+
// // Gordoncode from validationPlots_HSS.cxx
45+
// lifetime_plots all ("all", "all ");
46+
// standard_p_plots hs ("hs", "#h_{s} ");
47+
// standard_p_plots hhiggs ("higgs", "Higgs ");
48+
// two_particle_plots twohs ("twoHS", "Two HSs ");
49+
50+
// Book the histos
51+
// Gordoncode from validationPlots_HSS.cxx
52+
lifetime_plots* all;
53+
standard_p_plots* hs;
54+
two_particle_plots* twohs;
55+
4356
// this is needed to distribute the algorithm to the workers
4457
ClassImp(MyxAODAnalysis)
4558

@@ -92,6 +105,11 @@ EL::StatusCode MyxAODAnalysis :: histInitialize ()
92105
h_jetPt = new TH1F("h_jetPt", "h_jetPt", 100, 0, 500); // jet pt [GeV]
93106
wk()->addOutput (h_jetPt);
94107

108+
// Initializing histograms
109+
all = new lifetime_plots ("all", "all ");
110+
hs = new standard_p_plots ("hs", "#h_{s} ");
111+
twohs = new two_particle_plots ("twoHS", "Two HSs ");
112+
95113
return EL::StatusCode::SUCCESS;
96114
}
97115

@@ -168,11 +186,12 @@ EL::StatusCode MyxAODAnalysis :: execute ()
168186

169187
// check if the event is data or MC
170188
// (many tools are applied either to data or MC)
171-
bool isMC = false;
189+
// Warning: set but not used below commented out
190+
// bool isMC = false;
172191
// check if the event is MC
173-
if(eventInfo->eventType( xAOD::EventInfo::IS_SIMULATION ) ){
174-
isMC = true; // can do something with this later
175-
}
192+
// if(eventInfo->eventType( xAOD::EventInfo::IS_SIMULATION ) ){
193+
// isMC = true; // can do something with this later
194+
// }
176195

177196
// GitHubProgramCode added + Gordoncode
178197
// get jet container of interest
@@ -187,31 +206,24 @@ EL::StatusCode MyxAODAnalysis :: execute ()
187206
// Info("execute()", " jet pt = %.2f GeV", ((*jet_itr)->pt() * 0.001)); // just to print out something
188207
// } // end for loop over jets
189208

190-
// Book the histos
191-
// Gordoncode from validationPlots_HSS.cxx
192-
lifetime_plots all ("all", "all ");
193-
standard_p_plots hs ("hs", "#h_{s} ");
194-
standard_p_plots hhiggs ("higgs", "Higgs ");
195-
two_particle_plots twohs ("twoHS", "Two HSs ");
196-
two_particle_plots twojets ("TwoJets", "Two jets ");
197-
198209
// GitHubProgramCode added + Gordoncode
199210
// Get the truth info
200211
const xAOD::TruthEventContainer *truth = nullptr;
201212
// RETURN_CHECK (APP_NAME, event->retrieve(truth, "TruthEvents"));
202213
ANA_CHECK(event->retrieve( truth, "TruthEvents" ));
203-
bool isHiggs62 = false;
214+
// Warning: set but not used below commented out
215+
// bool isHiggs62 = false;
204216
// Loop over all the truth particles in there
205217
for (auto evt : *truth)
206218
{
207219
for (auto p : truth_as_range(evt))
208220
{
209221
if (p != nullptr)
210222
{
211-
all.Process(p);
223+
all->Process(p);
212224
if (p->pdgId() == 35) {
213-
hs.Process(p);
214-
twohs.addParticle(p);
225+
hs->Process(p);
226+
twohs->addParticle(p);
215227
// Changed i --> 0
216228
if(p->nParents() > 1) std::cout << "event " << 0 << ": this scalar has " << p->nParents() << " parents! " << std::endl;
217229
// Changed i --> 0
@@ -258,7 +270,8 @@ EL::StatusCode MyxAODAnalysis :: finalize ()
258270

259271
// GitHubProgramCode added
260272
ANA_CHECK_SET_TYPE (EL::StatusCode); // set type of return code you are expecting (add to top of each function once)
261-
xAOD::TEvent* event = wk()->xaodEvent();
273+
// Warning: unused variable below commented out
274+
// xAOD::TEvent* event = wk()->xaodEvent();
262275

263276
return EL::StatusCode::SUCCESS;
264277
}

RootCoreBin/.RootCore-rcconfig

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/bin/x86_64-slc6-gcc49-opt

RootCoreBin/RootCore/Packages.h

+154
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,154 @@
1+
#ifndef ROOTCORE_PACKAGES_H
2+
#define ROOTCORE_PACKAGES_H
3+
4+
// This file contains one define statement for each package detected by
5+
// RootCore. It is meant to allow to write package A in a form that
6+
// it uses the services of package B when available, but otherwise
7+
// skips it without failing. For this to work properly you need to list
8+
// package B in the PACKAGE_TRYDEP of package A.
9+
10+
#define ROOTCORE_PACKAGE_RootCore
11+
#define ROOTCORE_PACKAGE_Asg_Doxygen
12+
#define ROOTCORE_PACKAGE_Asg_Test
13+
#define ROOTCORE_PACKAGE_Asg_root
14+
#define ROOTCORE_PACKAGE_ApplyJetCalibration
15+
#define ROOTCORE_PACKAGE_Asg_GoogleTest
16+
#define ROOTCORE_PACKAGE_xAODRootAccessInterfaces
17+
#define ROOTCORE_PACKAGE_Asg_Boost
18+
#define ROOTCORE_PACKAGE_TestTools
19+
#define ROOTCORE_PACKAGE_CxxUtils
20+
#define ROOTCORE_PACKAGE_AthContainersInterfaces
21+
#define ROOTCORE_PACKAGE_AthLinks
22+
#define ROOTCORE_PACKAGE_AthContainers
23+
#define ROOTCORE_PACKAGE_xAODCore
24+
#define ROOTCORE_PACKAGE_xAODEventFormat
25+
#define ROOTCORE_PACKAGE_xAODRootAccess
26+
#define ROOTCORE_PACKAGE_AsgTools
27+
#define ROOTCORE_PACKAGE_AsgExampleTools
28+
#define ROOTCORE_PACKAGE_Asg_Eigen
29+
#define ROOTCORE_PACKAGE_Asg_FastJet
30+
#define ROOTCORE_PACKAGE_Asg_HEPUtils
31+
#define ROOTCORE_PACKAGE_Asg_Lhapdf
32+
#define ROOTCORE_PACKAGE_Asg_MCUtils
33+
#define ROOTCORE_PACKAGE_Asg_RooUnfold
34+
#define ROOTCORE_PACKAGE_xAODBase
35+
#define ROOTCORE_PACKAGE_CaloGeoHelpers
36+
#define ROOTCORE_PACKAGE_EventPrimitives
37+
#define ROOTCORE_PACKAGE_GeoPrimitives
38+
#define ROOTCORE_PACKAGE_xAODCaloEvent
39+
#define ROOTCORE_PACKAGE_xAODTracking
40+
#define ROOTCORE_PACKAGE_xAODTrigger
41+
#define ROOTCORE_PACKAGE_xAODBTagging
42+
#define ROOTCORE_PACKAGE_xAODPFlow
43+
#define ROOTCORE_PACKAGE_xAODJet
44+
#define ROOTCORE_PACKAGE_TruthUtils
45+
#define ROOTCORE_PACKAGE_xAODTruth
46+
#define ROOTCORE_PACKAGE_xAODMissingET
47+
#define ROOTCORE_PACKAGE_FourMomUtils
48+
#define ROOTCORE_PACKAGE_xAODEventInfo
49+
#define ROOTCORE_PACKAGE_xAODPrimitives
50+
#define ROOTCORE_PACKAGE_xAODEgamma
51+
#define ROOTCORE_PACKAGE_MuonIdHelpers
52+
#define ROOTCORE_PACKAGE_xAODMuon
53+
#define ROOTCORE_PACKAGE_xAODTau
54+
#define ROOTCORE_PACKAGE_AssociationUtils
55+
#define ROOTCORE_PACKAGE_RootCoreUtils
56+
#define ROOTCORE_PACKAGE_SampleHandler
57+
#define ROOTCORE_PACKAGE_EventLoop
58+
#define ROOTCORE_PACKAGE_PATCore
59+
#define ROOTCORE_PACKAGE_PATInterfaces
60+
#define ROOTCORE_PACKAGE_PathResolver
61+
#define ROOTCORE_PACKAGE_xAODParticleEvent
62+
#define ROOTCORE_PACKAGE_ReweightUtils
63+
#define ROOTCORE_PACKAGE_GoodRunsLists
64+
#define ROOTCORE_PACKAGE_PileupReweighting
65+
#define ROOTCORE_PACKAGE_MuonEfficiencyCorrections
66+
#define ROOTCORE_PACKAGE_MuonSelectorTools
67+
#define ROOTCORE_PACKAGE_MuonMomentumCorrections
68+
#define ROOTCORE_PACKAGE_ElectronPhotonSelectorTools
69+
#define ROOTCORE_PACKAGE_egammaLayerRecalibTool
70+
#define ROOTCORE_PACKAGE_MVAUtils
71+
#define ROOTCORE_PACKAGE_egammaRecEvent
72+
#define ROOTCORE_PACKAGE_egammaMVACalib
73+
#define ROOTCORE_PACKAGE_xAODMetaData
74+
#define ROOTCORE_PACKAGE_ElectronPhotonFourMomentumCorrection
75+
#define ROOTCORE_PACKAGE_InDetTrackSelectionTool
76+
#define ROOTCORE_PACKAGE_MCTruthClassifier
77+
#define ROOTCORE_PACKAGE_tauRecTools
78+
#define ROOTCORE_PACKAGE_TauAnalysisTools
79+
#define ROOTCORE_PACKAGE_ElectronEfficiencyCorrection
80+
#define ROOTCORE_PACKAGE_CalibrationDataInterface
81+
#define ROOTCORE_PACKAGE_JetInterface
82+
#define ROOTCORE_PACKAGE_xAODEventShape
83+
#define ROOTCORE_PACKAGE_JetCalibTools
84+
#define ROOTCORE_PACKAGE_JetSelectorTools
85+
#define ROOTCORE_PACKAGE_JetResolution
86+
#define ROOTCORE_PACKAGE_JetCPInterfaces
87+
#define ROOTCORE_PACKAGE_JetUncertainties
88+
#define ROOTCORE_PACKAGE_METInterface
89+
#define ROOTCORE_PACKAGE_METUtilities
90+
#define ROOTCORE_PACKAGE_xAODBTaggingEfficiency
91+
#define ROOTCORE_PACKAGE_CPAnalysisExamples
92+
#define ROOTCORE_PACKAGE_DiTauMassTools
93+
#define ROOTCORE_PACKAGE_ElectronPhotonShowerShapeFudgeTool
94+
#define ROOTCORE_PACKAGE_MultiDraw
95+
#define ROOTCORE_PACKAGE_EventLoopAlgs
96+
#define ROOTCORE_PACKAGE_EventLoopGrid
97+
#define ROOTCORE_PACKAGE_EventShapeInterface
98+
#define ROOTCORE_PACKAGE_IsolationSelection
99+
#define ROOTCORE_PACKAGE_FsrUtils
100+
#define ROOTCORE_PACKAGE_IRegionSelector
101+
#define ROOTCORE_PACKAGE_InDetTrackSystematicsTools
102+
#define ROOTCORE_PACKAGE_JetEDM
103+
#define ROOTCORE_PACKAGE_JetRec
104+
#define ROOTCORE_PACKAGE_IsolationCorrections
105+
#define ROOTCORE_PACKAGE_JetJvtEfficiency
106+
#define ROOTCORE_PACKAGE_JetUtils
107+
#define ROOTCORE_PACKAGE_JetMomentTools
108+
#define ROOTCORE_PACKAGE_JetSubStructureUtils
109+
#define ROOTCORE_PACKAGE_JetSubStructureMomentTools
110+
#define ROOTCORE_PACKAGE_PMGTools
111+
#define ROOTCORE_PACKAGE_PhotonEfficiencyCorrection
112+
#define ROOTCORE_PACKAGE_PhotonVertexSelection
113+
#define ROOTCORE_PACKAGE_TrigNavStructure
114+
#define ROOTCORE_PACKAGE_TrigConfBase
115+
#define ROOTCORE_PACKAGE_TrigConfL1Data
116+
#define ROOTCORE_PACKAGE_TrigConfHLTData
117+
#define ROOTCORE_PACKAGE_TrigConfInterfaces
118+
#define ROOTCORE_PACKAGE_TrigConfxAOD
119+
#define ROOTCORE_PACKAGE_TrigDecisionInterface
120+
#define ROOTCORE_PACKAGE_RoiDescriptor
121+
#define ROOTCORE_PACKAGE_TrigSteeringEvent
122+
#define ROOTCORE_PACKAGE_TrigRoiConversion
123+
#define ROOTCORE_PACKAGE_TrigDecisionTool
124+
#define ROOTCORE_PACKAGE_xAODTrigCalo
125+
#define ROOTCORE_PACKAGE_xAODTrigEgamma
126+
#define ROOTCORE_PACKAGE_TriggerMatchingTool
127+
#define ROOTCORE_PACKAGE_QuickAna
128+
#define ROOTCORE_PACKAGE_RootCoreTest
129+
#define ROOTCORE_PACKAGE_xAODCutFlow
130+
#define ROOTCORE_PACKAGE_TauCorrUncert
131+
#define ROOTCORE_PACKAGE_SUSYTools
132+
#define ROOTCORE_PACKAGE_SemileptonicCorr
133+
#define ROOTCORE_PACKAGE_TrackVertexAssociationTool
134+
#define ROOTCORE_PACKAGE_TrigAnalysisInterfaces
135+
#define ROOTCORE_PACKAGE_xAODTrigMissingET
136+
#define ROOTCORE_PACKAGE_xAODTrigBphys
137+
#define ROOTCORE_PACKAGE_TrigAnalysisTest
138+
#define ROOTCORE_PACKAGE_TrigBunchCrossingTool
139+
#define ROOTCORE_PACKAGE_TrigMuonEfficiency
140+
#define ROOTCORE_PACKAGE_TrigTauMatching
141+
#define ROOTCORE_PACKAGE_ZMassConstraint
142+
#define ROOTCORE_PACKAGE_xAODAssociations
143+
#define ROOTCORE_PACKAGE_xAODBPhys
144+
#define ROOTCORE_PACKAGE_xAODTrigL1Calo
145+
#define ROOTCORE_PACKAGE_xAODForward
146+
#define ROOTCORE_PACKAGE_xAODHIEvent
147+
#define ROOTCORE_PACKAGE_xAODLuminosity
148+
#define ROOTCORE_PACKAGE_xAODMetaDataCnv
149+
#define ROOTCORE_PACKAGE_xAODTrigMinBias
150+
#define ROOTCORE_PACKAGE_xAODTrigMuon
151+
#define ROOTCORE_PACKAGE_xAODTrigRinger
152+
#define ROOTCORE_PACKAGE_xAODTriggerCnv
153+
154+
#endif
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/QuickAna/lib/QuickAna_config.h
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/xAODBTaggingEfficiency/bin/BTaggingEfficiencyToolTester
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/xAODBTaggingEfficiency/bin/BTaggingSelectionToolTester
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/CPAnalysisExamples/bin/CPSystematicExample
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/CPAnalysisExamples/bin/CPToolTester
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/ElectronPhotonSelectorTools/bin/EGIdentification_mem_check
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/ElectronEfficiencyCorrection/bin/EgEfficiencyCorr_mem_check
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/ElectronPhotonFourMomentumCorrection/bin/ElectronPhotonFourMomentumCorrection_test_memory
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/FsrUtils/bin/FsrPhotonToolTester
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/InDetTrackSelectionTool/bin/InDetTrackSelectionToolTester
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/InDetTrackSystematicsTools/bin/InDetTrackSystsToolTester
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/JetResolution/bin/JERTester
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/JetCalibTools/bin/JetCalibTools_Example
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/MuonMomentumCorrections/bin/MCAST_Tester
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/JetUncertainties/bin/MakeCorrelationMatrixPlots
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/JetUncertainties/bin/MakeUncertaintyPlots
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/MuonEfficiencyCorrections/bin/MuonEfficiencyCorrectionsRootCoreTest
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/MuonSelectorTools/bin/MuonSelectorToolsTester
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/MuonEfficiencyCorrections/bin/MuonTriggerSFRootCoreTest
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/MuonEfficiencyCorrections/bin/MuonTriggerSFRootCoreTest_maskFeet
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/AssociationUtils/bin/OverlapRemovalTester
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/AssociationUtils/bin/OverlapRemovalTesterLegacy
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/PhotonEfficiencyCorrection/bin/PrintPhotonSF
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/SUSYTools/bin/SUSYToolsTester
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/TauAnalysisTools/bin/TauAnalysisToolsExample
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/JetSelectorTools/bin/TestJetCleaningTool
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/PhotonEfficiencyCorrection/bin/TestxAODPhotonAlg
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/TrackVertexAssociationTool/bin/TrackVertexAssoValidator
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/TrigTauMatching/bin/TrigTauMatching_example
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/TrigConfxAOD/scripts/checkTriggerConfig.py
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/SUSYTools/bin/check_syst
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/xAODRootAccess/scripts/checkxAOD.py
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/CPAnalysisExamples/bin/checkxAODTrigger
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/Asg_Doxygen/lib/local/bin/doxygen
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/egammaLayerRecalibTool/bin/egammaLayerRecalibTool_testmem
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/EventLoop/scripts/el_retrieve
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/EventLoop/scripts/el_wait
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/METUtilities/bin/example_METMaker_METSystematicsTool
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/METUtilities/bin/example_METMaker_advanced
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/InDetTrackSystematicsTools/bin/graph_to_function
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/AsgExampleTools/bin/hello
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/egammaMVACalib/bin/mem_test_initialize
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/QuickAna/bin/quickana_basic
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/QuickAna/scripts/quickana_hammercloud
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/QuickAna/scripts/quickana_hammercloud_ganga
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/QuickAna/bin/quickana_multi_wp
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cvmfs/atlas.cern.ch/repo/sw/ASG/AnalysisBase/2.4.14/RootCore/obj/x86_64-slc6-gcc49-opt/QuickAna/bin/quickana_output

0 commit comments

Comments
 (0)