/** * Author: * Mathieu.Benoit@cern.ch * * allpix Authors: * John Idarraga * Mathieu Benoit */ #include "AllPixTimepixDigit.hh" G4Allocator AllPixTimepixDigitAllocator; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... AllPixTimepixDigit::AllPixTimepixDigit() { pixelIDX = -1; pixelIDY = -1; pixelCounts = 0; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... AllPixTimepixDigit::~AllPixTimepixDigit() {;} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... AllPixTimepixDigit::AllPixTimepixDigit(const AllPixTimepixDigit& right) : AllPixDigitInterface() { pixelIDX = right.pixelIDX; pixelIDY = right.pixelIDY; pixelCounts = right.pixelCounts; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... const AllPixTimepixDigit& AllPixTimepixDigit::operator=(const AllPixTimepixDigit& right) { pixelIDX = right.pixelIDX; pixelIDY = right.pixelIDY; pixelCounts = right.pixelCounts; return *this; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... int AllPixTimepixDigit::operator==(const AllPixTimepixDigit& right) const { return ((pixelIDX==right.pixelIDX)&& (pixelIDY==right.pixelIDY)&& (pixelCounts==right.pixelCounts)); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void AllPixTimepixDigit::Draw() {;} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void AllPixTimepixDigit::Print() {;} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....