#include "LArCalibTest/FixLArIdMap.h"
#include "GaudiKernel/Algorithm.h"
#include "GaudiKernel/MsgStream.h"
#include "Gaudi/Property.h"
#include "GaudiKernel/IToolSvc.h"
#include "StoreGate/StoreGateSvc.h"
#include "LArCabling/LArCablingService.h"
#include "LArIdentifier/LArOnlineID.h"
#include "LArTools/LArOnOffIdMap.h"
#include "LArTools/LArFebRodMap.h"
#include "CaloIdentifier/LArFCAL_ID.h"
#include <fstream>
Go to the source code of this file.
|
bool | operator< (const LArOnOffId_P::LArOnOffId_P_t &t1, const LArOnOffId_P::LArOnOffId_P_t &t2) |
|
◆ operator<()
bool operator< |
( |
const LArOnOffId_P::LArOnOffId_P_t & |
t1, |
|
|
const LArOnOffId_P::LArOnOffId_P_t & |
t2 |
|
) |
| |
Definition at line 1433 of file FixLArIdMap.cxx.
1436 if (
t1.det<
t2.det)
return true ;
1438 if(
t1.det>
t2.det)
return false;
1440 if (
t1.pn<
t2.pn)
return true ;
1442 if (
t1.pn>
t2.pn)
return false;
1444 if (
t1.sample<
t2.sample)
return true ;
1446 if(
t1.sample>
t2.sample)
return false;
1448 if (
t1.region<
t2.region)
return true ;
1450 if(
t1.region>
t2.region)
return false;
1452 if (
t1.eta<
t2.eta)
return true ;
1454 if(
t1.eta>
t2.eta)
return false;
1456 if (
t1.phi<
t2.phi)
return true ;
1458 if(
t1.phi>
t2.phi)
return false;
1460 if (
t1.ft_num<
t2.ft_num)
return true ;
1462 if(
t1.ft_num>
t2.ft_num)
return false;
1464 if (
t1.feb_slot<
t2.feb_slot)
return true ;
1466 if(
t1.feb_slot>
t2.feb_slot)
return false;
1468 if (
t1.feb_chan<
t2.feb_chan)
return true ;
1470 if(
t1.feb_chan>
t2.feb_chan)
return false;
1472 if (
t1.calib_slot<
t2.calib_slot)
return true ;
1474 if(
t1.calib_slot>
t2.calib_slot)
return false;
1476 if (
t1.calib_line<
t2.calib_line)
return true ;
1478 if(
t1.calib_line>
t2.calib_line)
return false;