Skip to content
Snippets Groups Projects

Draft: [trigEGam] Integration beteween mongroups and TrigEgammaMonitoring

Closed Edmar Egidio Purcino De Souza requested to merge eegidiop/athena:tegmonGroups into 22.0
1 file
+ 16
13
Compare changes
  • Side-by-side
  • Inline
@@ -159,21 +159,24 @@ bool CaloGeometryFromFile::LoadGeometryFromFile(std::string fileName,
std::cout << "\n \n";
std::cout << "Testing whether CaloGeoGeometry is loaded properly"
<< std::endl;
if (!mcell)
if (!mcell) {
std::cout << "Cell is not found" << std::endl;
std::cout << "Identifier " << mcell->identify() << " sampling "
<< mcell->getSampling() << " eta: " << mcell->eta()
<< " phi: " << mcell->phi() << " CaloDetDescrElement=" << mcell
<< std::endl
<< std::endl;
const CaloDetDescrElement *mcell2
}
else {
std::cout << "Identifier " << mcell->identify() << " sampling "
<< mcell->getSampling() << " eta: " << mcell->eta()
<< " phi: " << mcell->phi() << " CaloDetDescrElement=" << mcell
<< std::endl
<< std::endl;
const CaloDetDescrElement *mcell2
= this->getDDE(mcell->getSampling(), mcell->eta(), mcell->phi());
std::cout << "Identifier " << mcell2->identify() << " sampling "
<< mcell2->getSampling() << " eta: " << mcell2->eta()
<< " phi: " << mcell2->phi() << " CaloDetDescrElement=" << mcell2
<< std::endl
<< std::endl;
std::cout << "Identifier " << mcell2->identify() << " sampling "
<< mcell2->getSampling() << " eta: " << mcell2->eta()
<< " phi: " << mcell2->phi() << " CaloDetDescrElement=" << mcell2
<< std::endl
<< std::endl;
}
return ok;
}
Loading