Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • le.koch/cbmroot
  • patrick.pfistner_AT_kit.edu/cbmroot
  • lena.rossel_AT_stud.uni-frankfurt.de/cbmroot
  • i.deppner/cbmroot
  • fweig/cbmroot
  • karpushkin_AT_inr.ru/cbmroot
  • v.akishina/cbmroot
  • rishat.sultanov_AT_cern.ch/cbmroot
  • l_fabe01_AT_uni-muenster.de/cbmroot
  • pwg-c2f/cbmroot
  • j.decuveland/cbmroot
  • a.toia/cbmroot
  • i.vassiliev/cbmroot
  • n.herrmann/cbmroot
  • o.lubynets/cbmroot
  • se.gorbunov/cbmroot
  • cornelius.riesen_AT_physik.uni-giessen.de/cbmroot
  • zhangqn17_AT_mails.tsinghua.edu.cn/cbmroot
  • bartosz.sobol/cbmroot
  • ajit.kumar/cbmroot
  • computing/cbmroot
  • a.agarwal_AT_vecc.gov.in/cbmroot
  • osingh/cbmroot
  • wielanek_AT_if.pw.edu.pl/cbmroot
  • malgorzata.karabowicz.stud_AT_pw.edu.pl/cbmroot
  • m.shiroya/cbmroot
  • s.roy/cbmroot
  • p.-a.loizeau/cbmroot
  • a.weber/cbmroot
  • ma.beyer/cbmroot
  • d.klein/cbmroot
  • d.smith/cbmroot
  • mvdsoft/cbmroot
  • d.spicker/cbmroot
  • y.h.leung/cbmroot
  • aksharma/cbmroot
  • m.deveaux/cbmroot
  • mkunold/cbmroot
  • h.darwish/cbmroot
  • pk.sharma_AT_vecc.gov.in/cbmroot
  • f_fido01_AT_uni-muenster.de/cbmroot
  • g.kozlov/cbmroot
  • d.emschermann/cbmroot
  • evgeny.lavrik/cbmroot
  • v.friese/cbmroot
  • f.uhlig/cbmroot
  • ebechtel_AT_ikf.uni-frankfurt.de/cbmroot
  • a.senger/cbmroot
  • praisig/cbmroot
  • s.lebedev/cbmroot
  • redelbach_AT_compeng.uni-frankfurt.de/cbmroot
  • p.subramani/cbmroot
  • a_meye37_AT_uni-muenster.de/cbmroot
  • om/cbmroot
  • o.golosov/cbmroot
  • l.chlad/cbmroot
  • a.bercuci/cbmroot
  • d.ramirez/cbmroot
  • v.singhal/cbmroot
  • h.schiller/cbmroot
  • apuntke/cbmroot
  • f.zorn/cbmroot
  • rubio_AT_physi.uni-heidelberg.de/cbmroot
  • p.chudoba/cbmroot
  • apuntke/mcbmroot
  • r.karabowicz/cbmroot
66 results
Show changes
Commits on Source (4)
......@@ -258,7 +258,7 @@ namespace cbm::algo
double ToTcorr = fbDoToTCorr ? fParams.fElinkParams[fpgaID].fToTshift[channel] : 0.;
int32_t pixelUID = GetPixelUID(fpgaID, channel);
//check ordering
double finalTime = time + (double) fMsRefTime - fSystemTimeOffset;
double finalTime = time + (double) fMsRefTime - fParams.fElinkParams[fpgaID].fTimeOffset;
// Do not accept digis, where the MS und TS differs by more than 6 sec (mainly TS0)
if (6e9 < finalTime) return;
......
......@@ -46,6 +46,7 @@ namespace cbm::algo
**/
struct UnpackRichElinkPar {
std::vector<double> fToTshift; ///< TOT shift for different channels
uint64_t fTimeOffset = 0.; ///< Time calibration parameter
};
......@@ -178,12 +179,6 @@ namespace cbm::algo
/** @brief Storage of monitoring data. */
UnpackRichMonitorData fMonitor;
/**
* @brief Time offset for the system
* @todo This should be module and channel dependent and included into the asic parameters
*/
std::int32_t fSystemTimeOffset = 0;
};
......
......@@ -404,7 +404,7 @@ namespace cbm::algo
fLastFulltime = raw.GetFullTime();
// Get the time information and apply the necessary correction
uint64_t time = raw.GetTime() - fSystemTimeOffset;
uint64_t time = raw.GetTime() - elinkPar.fTimeOffset;
// Get the timeshift and set the member, which is required for some of the rtd methods
uint64_t currentTimeshift = GetBinTimeShift(raw.GetSamples());
......
......@@ -250,12 +250,6 @@ namespace cbm::algo
/** @brief Number of streams per word **/
static const std::uint8_t fStreamsPerWord = 2;
/**
** @brief Time offset for the system
** @todo This should be module and channel dependent and included into the asic parameters
**/
std::int32_t fSystemTimeOffset = 0;
/** @brief Start time of the current µSlice relative to the Timeslice start time in Spadic CC. */
size_t fMsStartTimeRelCC = 0;
......
......@@ -39,7 +39,7 @@ namespace cbm::algo
// - relative offset of the MS wrt the TS
// - FASP epoch offset for current CROB
// - TRD2D system offset wrt to experiment time (e.g. T0)
uint64_t time = uint64_t((msDescr.idx - tTimeslice - fSystemTimeOffset) / 12.5);
uint64_t time = uint64_t((msDescr.idx - tTimeslice - fParams.fSystemTimeOffset) / 12.5);
// Get parameters for current eq id.
const uint8_t crob_id = fParams.fCrobId;
......
......@@ -73,6 +73,7 @@ namespace cbm::algo
** @brief Parameters required for the TRD unpacking (specific to one component)
**/
struct UnpackTrd2dPar {
int32_t fSystemTimeOffset = 0; ///< Time calibration parameter
uint16_t fModId = 0; ///< Module ID of component
uint8_t fCrobId = 0; ///< CROB ID of component
std::vector<UnpackTrd2dAsicPar> fAsicParams = {}; ///< Parameters for each ASIC
......@@ -141,12 +142,6 @@ namespace cbm::algo
UnpackTrd2dMonitorData fMonitor; ///< Container for monitoring data
/**
** @brief Time offset for the system
** @todo This should be module and channel dependent and included into the asic parameters
**/
std::int32_t fSystemTimeOffset = 0;
bool pushDigis(std::vector<CbmTrdFaspMessage> messages, const uint64_t time);
/** @brief Finalize component (e.g. copy from temp buffers) */
......
......@@ -146,7 +146,7 @@ namespace cbm::algo
auto mapEntry = fStsConfig.Map(equip, elink);
elinkPar.fAddress = mapEntry.first; // Module address for this elink
elinkPar.fAsicNr = mapEntry.second; // ASIC number within module
elinkPar.fTimeOffset = 0.;
elinkPar.fTimeOffset = fSystemTimeOffset[fles::SubsystemIdentifier::STS];
elinkPar.fAdcOffset = 1.;
elinkPar.fAdcGain = 1.;
elinkPar.fWalk = fStsConfig.WalkMap(elinkPar.fAddress, elinkPar.fAsicNr);
......@@ -165,7 +165,7 @@ namespace cbm::algo
for (size_t elink = 0; elink < numElinks; elink++) {
UnpackMuchElinkPar elinkPar;
elinkPar.fAddress = fMuchConfig.Map(equip, elink); // Vector of MUCH addresses for this elink
elinkPar.fTimeOffset = 0.;
elinkPar.fTimeOffset = fSystemTimeOffset[fles::SubsystemIdentifier::MUCH];
par->fElinkParams.push_back(elinkPar);
}
fAlgoMuch[equip].SetParams(std::move(par));
......@@ -180,7 +180,7 @@ namespace cbm::algo
for (size_t elink = 0; elink < numElinks; elink++) {
UnpackTofElinkPar elinkPar;
elinkPar.fChannelUId = fTofConfig.Map(equip, elink); // Vector of TOF addresses for this elink
elinkPar.fTimeOffset = 0.;
elinkPar.fTimeOffset = fSystemTimeOffset[fles::SubsystemIdentifier::RPC];
par->fElinkParams.push_back(elinkPar);
}
fAlgoTof[equip].SetParams(std::move(par));
......@@ -195,7 +195,7 @@ namespace cbm::algo
for (size_t elink = 0; elink < numElinks; elink++) {
UnpackBmonElinkPar elinkPar;
elinkPar.fChannelUId = fBmonConfig.Map(equip, elink); // Vector of T0 addresses for this elink
elinkPar.fTimeOffset = 0.;
elinkPar.fTimeOffset = fSystemTimeOffset[fles::SubsystemIdentifier::T0];
par->fElinkParams.push_back(elinkPar);
}
fAlgoBmon[equip].SetParams(std::move(par));
......@@ -208,8 +208,9 @@ namespace cbm::algo
std::unique_ptr<UnpackRichPar> par(new UnpackRichPar());
std::map<uint32_t, std::vector<double>> compMap = fRichConfig.Map(equip);
for (auto const& val : compMap) {
uint32_t address = val.first;
par->fElinkParams[address].fToTshift = val.second;
uint32_t address = val.first;
par->fElinkParams[address].fToTshift = val.second;
par->fElinkParams[address].fTimeOffset = fSystemTimeOffset[fles::SubsystemIdentifier::RICH];
}
fAlgoRich[equip].SetParams(std::move(par));
L_(info) << "--- Configured equipment " << equip << " with " << fRichConfig.GetNumElinks(equip) << " elinks";
......@@ -231,6 +232,7 @@ namespace cbm::algo
auto addresses = fTrdConfig.Map(equip, crob, elink);
elinkPar.fAddress = addresses.first; // Asic address for this elink
elinkPar.fChanAddress = addresses.second; // Channel addresses for this elink
elinkPar.fTimeOffset = fSystemTimeOffset[fles::SubsystemIdentifier::TRD];
crobPar.fElinkParams.push_back(elinkPar);
}
par->fCrobParams.push_back(crobPar);
......@@ -258,9 +260,10 @@ namespace cbm::algo
chanPar.fDaqOffset = std::get<2>(pars); // Time calibration parameter
asicPar.fChanParams.push_back(chanPar);
}
auto comppars = fTrd2dConfig.CompMap(equip);
par->fModId = comppars.first;
par->fCrobId = comppars.second;
auto comppars = fTrd2dConfig.CompMap(equip);
par->fSystemTimeOffset = fSystemTimeOffset[fles::SubsystemIdentifier::TRD2D];
par->fModId = comppars.first;
par->fCrobId = comppars.second;
par->fAsicParams.push_back(asicPar);
}
fAlgoTrd2d[equip].SetParams(std::move(par));
......
......@@ -132,6 +132,13 @@ namespace cbm::algo
/** @brief RICH unpackers **/
std::map<uint16_t, UnpackRich> fAlgoRich = {};
/** @brief System time offsets **/
std::map<fles::SubsystemIdentifier, int32_t> fSystemTimeOffset = {
{fles::SubsystemIdentifier::STS, -970}, {fles::SubsystemIdentifier::MUCH, -980},
{fles::SubsystemIdentifier::RICH, 100}, {fles::SubsystemIdentifier::RPC, 40},
{fles::SubsystemIdentifier::T0, 0}, {fles::SubsystemIdentifier::TRD, 1300},
{fles::SubsystemIdentifier::TRD2D, -510}};
};
} // namespace cbm::algo
......
......@@ -58,17 +58,6 @@ namespace Cbm
LOG(info) << "****";
}
void CorrectMediaId()
{
TList* media = gGeoManager->GetListOfMedia();
TIter next(media);
TGeoMedium* med;
Int_t counter {0};
while ((med = static_cast<TGeoMedium*>(next()))) {
med->SetId(counter++);
}
}
void RemoveDuplicateMaterials()
{
// Revove duplicate materials
......@@ -177,7 +166,6 @@ namespace Cbm
}
}
Cbm::GeometryUtils::CorrectMediaId();
Cbm::GeometryUtils::RemoveDuplicateMaterials();
Cbm::GeometryUtils::RemoveDuplicateMedia();
......
......@@ -13,7 +13,6 @@ namespace Cbm
{
void PrintMedia();
void PrintMaterials();
void CorrectMediaId();
void ReAssignMediaId();
void RemoveDuplicateMaterials();
void RemoveDuplicateMedia();
......
set(GEOMETRY_VERSION e8cd00f4c38e246e30d0b891bb79608c5564a1aa)
set(GEOMETRY_VERSION 660b319c938208fd7d65c7fb5b1da8ef5cb954c8)
set(GEOMETRY_SRC_URL "https://git.cbm.gsi.de/CbmSoft/cbmroot_geometry.git")
......