Skip to content
Snippets Groups Projects
Commit 10fe5baf authored by Zdenek Hubacek's avatar Zdenek Hubacek Committed by Graeme Stewart
Browse files

Minor fixes in the ntuple processing standalone code (ISF_FastCaloSimParametrization-00-01-07)

	* Minor fixes in the ntuple processing standalone code
	* tagging ISF_FastCaloSimParametrization-00-01-07

2015-03-24 Zdenek Hubacek <zdenek.hubacek@cern.ch>
	* Added missing rounding to TileDigits digi settings
        * The digi/reco log could be reduced by switching off verbose output
	* tagging ISF_FastCaloSimParametrization-00-01-06
parent 497797ec
1 merge request!20779WIP: Migrate DataQualityTools to ToolHandles
......@@ -14,6 +14,7 @@ print ServiceMgr.TileInfoLoader
print topSequence.TileDigitsMaker
print ToolSvc.TileHitVecToCntTool
topSequence.TileDigitsMaker.OutputLevel=1
topSequence.TileDigitsMaker.IntegerDigits=True
TileHitVecToCntTool.OutputLevel=1
ToolSvc.TileRawChannelBuilderOptATLAS.OutputLevel=1
###########
......
......@@ -267,7 +267,7 @@ void CaloHitAna::Loop()
}
if (m_Debug > 1) std::cout <<" Done"<<std::endl;
if (m_Debug > 1) std::cout <<"Reading detailed FCS hits";
if (m_Debug > 1) std::cout <<"Reading detailed FCS hits "<< HitIdentifier->size()<<std::endl;
for (unsigned int hit_i = 0; hit_i < HitIdentifier->size(); hit_i++)
{
if ((*HitSampling)[hit_i] >=12 && (*HitSampling)[hit_i]<=20 && (*HitT)[hit_i]>m_TimingCut)
......
......@@ -102,6 +102,7 @@ struct FCS_truth : public TLorentzVector
#pragma link C++ struct std::vector<FCS_hit>+;
#pragma link C++ struct std::vector<FCS_g4hit>+;
#pragma link C++ struct FCS_matchedcell+;
#pragma link C++ struct std::vector<FCS_matchedcell>+;
#pragma link C++ struct FCS_matchedcellvector+;
#pragma link C++ class std::vector<Float_t>+;
#pragma link C++ struct FCS_truth+;
......
......@@ -9,6 +9,7 @@
#pragma link C++ struct std::vector<FCS_hit>+;
#pragma link C++ struct std::vector<FCS_g4hit>+;
#pragma link C++ struct FCS_matchedcell+;
#pragma link C++ struct std::vector<FCS_matchedcell>+;
#pragma link C++ struct FCS_matchedcellvector+;
#pragma link C++ class std::vector<Float_t>+;
#pragma link C++ struct FCS_truth+;
......
......@@ -42,7 +42,7 @@ int main(int argc, char *argv[])
for (Int_t i=3; i<argc; i++)
{
TString parameter = argv[i];
if (! parameter.Contains("tc") || parameter.Contains("debug"))
if (! (parameter.Contains("tc") || parameter.Contains("debug")))
{
Int_t pari = parameter.Atoi();
settings.push_back(pari);
......@@ -56,6 +56,7 @@ int main(int argc, char *argv[])
{
parameter.ReplaceAll("debug=","");
Debug = parameter.Atoi();
std::cout <<Debug<<std::endl;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment