ATLAS Offline Software
Loading...
Searching...
No Matches
ITkPixSimulationParameters.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4
6#include <iostream>
7#include <format>
8
9std::ostream &
10operator<<(std::ostream & os, const ITkPixSimulationParameters & c){
11 os<<std::format("ToT Threshold = {}; XTalk = {}; p(Disable) = {}; noiseOcc. = {}; ",
12 c.totThreshold(), c.crossTalk(), c.disableProbability(), c.noiseOccupancy());
13 os<<"Noise shape: ";
14
15 for(const auto& v=c.noiseShape(); const auto & f:v) os<<f<<" ";
16 return os;
17}
std::ostream & operator<<(std::ostream &os, const ITkPixSimulationParameters &c)
Simple data class for holding constants for use in the ITkPixV2 Chip simulation.