ATLAS Offline Software
Loading...
Searching...
No Matches
ITkPixSimulationParameters.cxx File Reference
#include "PixelConditionsData/ITkPixSimulationParameters.h"
#include <iostream>
#include <format>
Include dependency graph for ITkPixSimulationParameters.cxx:

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const ITkPixSimulationParameters &c)

Function Documentation

◆ operator<<()

std::ostream & operator<< ( std::ostream & os,
const ITkPixSimulationParameters & c )

Definition at line 9 of file ITkPixSimulationParameters.cxx.

10 {
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}