Time of Flight Measurement System using Time to Digital Converter (TDC7200)

Size: px
Start display at page:

Download "Time of Flight Measurement System using Time to Digital Converter (TDC7200)"

Transcription

1 Time of Flight Measurement System using Time to Digital Converter (TDC7200) Mehul J. Gosavi 1, Rushikesh L. Paropkari 1, Namrata S. Gaikwad 1, S. R Dugad 2, C. S. Garde 1, P.G. Gawande 1, R. A. Shukla 2 1 Department of Electronics and Telecommunication Engineering, Vishwakarma Institute of Information and Technology, PUNE Tata Institute of Fundamental Research, Mumbai Abstract:- Silicon Photo-Multiplier (SiPM) is a sensitive photon detector which is being aimed as replacement to conventionally used vacuum Photo Multiplier Tubes (PMTs), because of its numerous advantages. SiPM is used in many high energy physics and nuclear physics experiments as a secondary detector coupled to a scintillator which is primary detector for many high energy radiations. The SiPM signal strength and signal arrival time measurement with high accuracy and resolution are extremely important for correct physical interpretation of data. We have developed a data acquisition system for arrival time measurement of the SiPM signal (pulse) using Time to Digital Converter (TDC). The system is designed around commercially available TDC7200 integrated circuit (IC) and PIC18F87J50 microcontroller. The microcontroller was programmed to configure and readout the TDC IC over high speed SPI line and log the read-out data to PC over UART. TDC data acquisition system was tested with calibrated delay inputs to characterize different modes of operation thoroughly. The collected data was analysed statistically using ROOT framework and the measurement accuracy of about 150 ps has been demonstrated. Here we discuss the methodology of measuring arrival time of the SiPM signal to sub 150 ps accuracy, development of data acquisition system and its performance validation in this article. Keywords:- TDC, SiPM, SPI, UART. I. INTRODUCTION :- a) Introduction to SiPM SiPM is an array of Avalanche Photo Diodes (APDs), all connected together. The device is operated in reverse bias to bias the APDs in Geiger mode. The incident photon causes avalanche breakdown to produce high gain. Thus SiPM is highly sensitive photon detector. Silicon Photo- Multiplier has many advantages over conventionally used photo multiplier tube (PMT) like high gain(~10 6 ), low bias voltage(30-100v), higher photon detection efficiency [1]. SiPM can even detect extremely low light flux [2]. At cosmic ray experiment GRAPES-3 PMTs are used to convert scintillation light to electric signals [1]. But due to advantages offered by SiPM, PMTs are being planned to be replaced by SiPM [1]. Electric signals from SiPM contain valuable information about the primary high energy particle detected in scintillator. Timing information of 252

2 arrival of the signal is very important parameter for analysis of the cosmic rays. The arrival time is measured with respect to a system trigger. To measure time difference with such high precision TDC7200 can be used. Before STOP pulse reaches TDC it is preconditioned using amplifier, splitter, and discriminator. Typical system block diagram is shown in figure 1. Fig 1 [6] : Block diagram of system to collect data of high energy particles. b) Introduction to TDC [4] TDC performs the function of a stopwatch and measures the elapsed time between a start pulse and stop pulse. The analog output of SiPM is preconditioned using high speed amplifier and digitized using discriminator then given to TDC7200. TDC7200 has range of 12ns to 8ms and resolution of 55ps. In TDC7200 two counters are used to measure time: Course counter and Clock counter. The Coarse Counter counts the number of times the ring oscillator (core time measurement mechanism of TDC7200) wraps. The Clock Counter counts the number of integer clock cycles between START and STOP events. There are two modes of measurements, mode 1 and mode 2. The time difference between the START and STOP pulse is regarded as Time of Flight (ToF). Mode 1:- Mode 1 is used to measure ToF from 12 ns to 500 ns. To measure time in mode1 internal ring oscillator and coarse counter is used. That is why this mode is recommended for time measurements of <500ns. Mode 2:- Mode 2 is used to measure ToF from 250 ns to 8ms. In mode 2 clock counter is used whereas coarse counter is used to measure fractional part of measurement. Due to clock counter this is recommended for measurements with high ToF. To test the system we have measured ToF from 5 ns to 750 ns using mode 1 and 250 ns to 5 ms using mode

3 II. SYTEM DESIGN As shown in figure 1 we have three major parts of this system TDC, microcontroller PIC18F87J50 and PC.. Fig 2 : Block diagram of data acquisition system Communication between PC and TDC happens through PIC. Here PIC acts as Communication Bridge between PC and TDC7200. PIC configures TDC and reads data from TDC using SPI protocol. Open ttyusb Configure the Port for UART Send command and register data to PIC Wait to read data from PIC and store the data in file After receiving required data from PIC calculate ToF and store it in file. Fig 3. Algorithm for PC code Algorithm of PC software is shown in Figure 3. As shown in figure first we configure a USB port of PC for UART communication (Operating system used in PC is LINUX). PC is sends the command to PIC through FTDI232 using UART protocol. Command contains information about selection of mode and stop pulse selection and address of register in TDC. After sending command PC waits to receive data from PIC. When PIC sends measurement data to PC it calculates ToF and stores data in a file so it can be used for further analysis. PIC reads registers of TDC which store the time measurements. ToF is calculated from these register values using formulae given in datasheet of TDC7200. Formula varies according to the mode used for measurement. 254

4 Initialize the PIC Configure SPI (SSPCON and SSPSTAT register) [5] Configure UART (set baud rate and select asynchronous mode Wait for Command form PC Configure the TDC registers as per specifications and received address (PIC is writing data in registers of TDC through SPI) Wait for the TDC to complete measurement and then read data from TDC registers (PIC is reading data from registers of TDC through SPI) Receive data for TDC through SPI and send it to PC through UART Fig 4. Algorithm for PIC code 255

5 Fig 4 shows the algorithm and instruction flow of the micro-controller firmware written to communicate with PC and TDC7200. First PIC receives the address of TDC7200 registers and their configurations from user (PC software) as shown in Figure 3. Then PIC configures registers of TDC which are addressed by PC using specification received. After proper configuration of the TDC7200, the measurement is initiated with arrival of START pulse and measurement is completed with arrival of STOP pulse. PIC waits till the measurement is completed, which is signalled over an interrupt line by the TDC7200. Once the measurement is completed PIC reads the TDC registers in which the measured time information is store. After reading PIC sends these register values to PC through UART protocol. These register values are used by PC to calculate ToF. As can be seen in algorithm PIC uses both UART (to communicate with PC) and SPI (to communicate with SPI) protocol for communication while PC use SPI to communicate with SPI. Using this type of communication system we were able to take 400 measurements per second. Collected event data is stored into an ASCII file and then analysed with analysis program developed using ROOT framework. Testing methodology has been described in following section. III. TESTING METHODOLOGY:- Block diagram of the test setup is shown in figure 5. START and STOP pulses are generated from an Arbitrary Function Generator (AFG3202) which provides user defined calibrated delay between two output channels. These outputs are fed to respective inputs of TDC. The STOP pulse has been generated in such a way that it has specific delay (set delay) as compared to START pulse. Fig 5: Block diagram of testing setup We are measuring this delay using our system. This set delay is varied step by step to test the system. Minimum delay measured is 5 ns while maximum delay measured is 4ms. Then configure the TDC7200 using PC, TDC7200 measures the delay after completion of measurement PIC sends register values to PC. PC calculates time of flight using these register values. To analyse the measured values of time intervals we have used open source software ROOT developed by CERN in LINUX. A program is written in C to extract the data from file in which measurements of TDC7200 are stored and then they are plotted in ROOT. To test the system extensively we took samples over large range of time starting from 5 ns to 5 ms. For each delay setting at least 1000 events were collected and histogrammed. The plotted histogram was fitted with Gaussian function to get mean and standard deviation (sigma). Mean and sigma for each delay was further plotted for final analysis. One such histogram for mode 1 and mode 2 measurements have been shown in figure 6 and figure 7 respectively. 256

6 Fig 6: Histogram for mode 1, set delay of 200 ns We measured ToF for 1001 times for constant delay. Here we used function generator to set the delay. Then histogram was plotted for these 1001 readings. As shown in histogram of Figure 6 the measurement is taken for 1001 times for same set delay of 200 ns in mode 1. Mean of the histogram is which is very close to set delay. As can be seen in histogram the measurements of TDC varies from ns to ns which means that variation of readings is in the range of ±0.2 ns that is very low. Fig 7: Histogram for mode 2, set delay of 1000 ns Figure 7 shows histogram for mode 2. For this histogram the set delay is 1000 ns, measurement is carried out 1001 times. Mean for 1001 readings came out to be as shown in figure 7. Also in mode 2 variations inmeasurement is ±0.2 ns. But for mode 2 sharp bar occurs at ns which implies that mode 2 has very high consistency. IV. RESULTS AND DISCUSSIONS:- We have tested this system for both modes mode 1 and mode 2. Below given are graphs of measured ToF vs Set delay in ns and graphs of Error vs Set delay. Error is the difference between measured ToF vs Set delay in ns. 257

7 Fig 8: Measured delay vs Set delay(ns) Figure 8 is the plot of time interval between start and stop pulse given by function generator (Set delay) vs the time interval measured by TDC7200 (measured delay mean) for mode 1. The measurement was fitted with straight line with p1 being slope and p0 is y intercept. Linear behaviour with very small deviation was observed. As y intercept is very close to zero offset error in measurements is negligible. The delay for modes are decided according to the ranges of modes as given in datasheet of TDC7200. Fig 9. Error vs set delay in ns Figure 9 is plot of error (ns) vs set delay. Error is difference between measured value of ToF and expected value (with straight line fit) at each set delay. As can be seen in graph the error varies within the range of ±150 ps in the measurement range of 5 ns to 750 ns (our range of interest). Though preferred measurement range of mode 1 is 12 ns to 500 ns we have tested mode 1 of TDC7200 up to 750 ns. 258

8 Fig 10: Set delay vs measured delay. Figure 10 is plot between time interval given between two pulses using function generator and time interval measured by TDC7200 in mode 2. Also for mode 2 like mode 1 the measurements were fitted in straight line with slope 1 (p1 being slope and p0 is y intercept). In mode 2 also linear behaviour with very small deviation was observed. In mode 2 the offset error is negligible considering wide range of measurements.. Fig 11: error vs set delay in ns. Figure 11 is plot of error (ns) vs set delay. Error is difference between measured value of ToF and expected value (with straight line fit) at each set delay. As can be seen in graph the error varies within the range of ns to 0.06 ns in the measurement range of 250 ns to 5 ms. By observing both graphs it can be concluded that error is not more than 150 ps in any mode. Maximum speed to take measurements achieved was 450 Hz that is 450 measurements per seconds. V. CONCLUSION:- SiPM is becoming a versatile photo-readout element for experiments in high energy physics like GRAPES-3. Arrival time of photon on SiPM is of very much importance and for high resolution timing measurement different types of TDC are widely used. We have demonstrated capabilities of commercially available TDC7200 TDC IC with extensive characterization. The developed data acquisition system using TDC7200 has provided timing measurement accuracy within 150 ps, which is required for timing measurements using SiPM. The data rate capability up to 450 Hz was achieved. Furthermore building upon developed expertise, the system will be updated to support more readout channels. ACKNOWLEDGEMENT We express our gratitude towards VIIT and TIFR for giving us opportunity to work on this project. We take this opportunity to show our gratitude to our seniors, Mr. Ravi Kesharwani and Mr. Akshay Manjare for their and 259

9 kind suggestions and constant encouragement. Their dynamism has always inspired us. Without them this would have been tougher journey. We thank Mr. A. S. Naik and Mr. N. M. Bhoj for their support and timely guidance. We are happy to express our gratitude to Prof. Dr. B.S. Karkare, Principal, VIIT for her appreciation and Prof. Dr. Y. H. Dandawate, HOD of Department of Electronics and Telecommunication, VIIT for his constant motivation. VI. REFERENCES:- [1] Multi-channel programmable power supply with temperature compensation for silicon sensors, R.A. Shukla, V. G. Achanta, S.R. Dugad, J. Freeman, C.S. Garde, S.K. Gupta, P.D. Khandekar, A.M. Kurup, S.S. Lokhandwala, S. Los, S.S. Prabhu. [2] Development of Micron-Resolution Optical Scanner for Silicon Detectors,, S.R. Dugad, S.P. Duttagupta, C.S. Garde, A.V. Gopal, S.K. Gupta, A.M. Kurup, S.S. Lokhandwala, S.S. Prabhu, R.A. Shukla. [3] J. Christensen, HPTDC High Performance Time to Digital Converter. [4] Datasheet of TDC7200. ( [5] Datasheet of PIC18F87J50. ( [6] K. Patil, Q. Jawadwala and F. C. Shu, "Design and Construction of Electronic Aid for Visually Impaired People," in IEEE Transactions on Human-Machine Systems, vol. PP, no. 99, pp doi: /THMS

A Survey of Power Supply Techniques for Silicon Photo-Multiplier Biasing

A Survey of Power Supply Techniques for Silicon Photo-Multiplier Biasing A Survey of Power Supply Techniques for Silicon Photo-Multiplier Biasing R. Shukla 1, P. Rakshe 2, S. Lokhandwala 1, S. Dugad 1, P. Khandekar 2, C. Garde 2, S. Gupta 1 1 Tata Institute of Fundamental Research,

More information

CMOS Based Compact Spectrometer

CMOS Based Compact Spectrometer CMOS Based Compact Spectrometer Mr. Nikhil Kulkarni Ms. Shriya Siraskar Ms. Mitali Shah. Department of Electronics and Department of Electronics and Department of Electronics and Telecommunication Engineering

More information

Tutors Dominik Dannheim, Thibault Frisson (CERN, Geneva, Switzerland)

Tutors Dominik Dannheim, Thibault Frisson (CERN, Geneva, Switzerland) Danube School on Instrumentation in Elementary Particle & Nuclear Physics University of Novi Sad, Serbia, September 8 th 13 th, 2014 Lab Experiment: Characterization of Silicon Photomultipliers Dominik

More information

TAPR TICC Timestamping Counter Operation Manual. Introduction

TAPR TICC Timestamping Counter Operation Manual. Introduction TAPR TICC Timestamping Counter Operation Manual Revised: 23 November 2016 2016 Tucson Amateur Packet Radio Corporation Introduction The TAPR TICC is a two-channel timestamping counter ("TSC") implemented

More information

Development of a 256-channel Time-of-flight Electronics System For Neutron Beam Profiling

Development of a 256-channel Time-of-flight Electronics System For Neutron Beam Profiling JOURNAL OF L A TEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2015 1 Development of a 256-channel Time-of-flight Electronics System For Neutron Beam Profiling Haolei Chen, Changqing Feng, Jiadong Hu, Laifu Luo,

More information

Scintillators as an external trigger for cathode strip chambers

Scintillators as an external trigger for cathode strip chambers Scintillators as an external trigger for cathode strip chambers J. A. Muñoz Department of Physics, Princeton University, Princeton, NJ 08544 An external trigger was set up to test cathode strip chambers

More information

Characterisation of SiPM Index :

Characterisation of SiPM Index : Characterisation of SiPM --------------------------------------------------------------------------------------------Index : 1. Basics of SiPM* 2. SiPM module 3. Working principle 4. Experimental setup

More information

Multi-channel front-end board for SiPM readout

Multi-channel front-end board for SiPM readout Preprint typeset in JINST style - HYPER VERSION Multi-channel front-end board for SiPM readout arxiv:1606.02290v1 [physics.ins-det] 7 Jun 2016 M. Auger, A. Ereditato, D. Goeldi, I. Kreslo, D. Lorca, M.

More information

CAEN. Electronic Instrumentation. CAEN Silicon Photomultiplier Kit

CAEN. Electronic Instrumentation. CAEN Silicon Photomultiplier Kit CAEN Tools for Discovery Electronic Instrumentation CAEN Silicon Photomultiplier Kit CAEN realized a modular development kit dedicated to Silicon Photomultipliers, representing the state-of-the art in

More information

A high-performance, low-cost, leading edge discriminator

A high-performance, low-cost, leading edge discriminator PRAMANA c Indian Academy of Sciences Vol. 65, No. 2 journal of August 2005 physics pp. 273 283 A high-performance, low-cost, leading edge discriminator S K GUPTA a, Y HAYASHI b, A JAIN a, S KARTHIKEYAN

More information

Photon Count. for Brainies.

Photon Count. for Brainies. Page 1/12 Photon Count ounting for Brainies. 0. Preamble This document gives a general overview on InGaAs/InP, APD-based photon counting at telecom wavelengths. In common language, telecom wavelengths

More information

arxiv: v3 [astro-ph.im] 17 Jan 2017

arxiv: v3 [astro-ph.im] 17 Jan 2017 A novel analog power supply for gain control of the Multi-Pixel Photon Counter (MPPC) Zhengwei Li a,, Congzhan Liu a, Yupeng Xu a, Bo Yan a,b, Yanguo Li a, Xuefeng Lu a, Xufang Li a, Shuo Zhang a,b, Zhi

More information

Silicon Photomultiplier

Silicon Photomultiplier Silicon Photomultiplier Operation, Performance & Possible Applications Slawomir Piatek Technical Consultant, Hamamatsu Corp. Introduction Very high intrinsic gain together with minimal excess noise make

More information

50 MHz Voltage-to-Frequency Converter

50 MHz Voltage-to-Frequency Converter Journal of Physics: Conference Series OPEN ACCESS 50 MHz Voltage-to-Frequency Converter To cite this article: T Madden and J Baldwin 2014 J. Phys.: Conf. Ser. 493 012008 View the article online for updates

More information

High collection efficiency MCPs for photon counting detectors

High collection efficiency MCPs for photon counting detectors High collection efficiency MCPs for photon counting detectors D. A. Orlov, * T. Ruardij, S. Duarte Pinto, R. Glazenborg and E. Kernen PHOTONIS Netherlands BV, Dwazziewegen 2, 9301 ZR Roden, The Netherlands

More information

Scintillator/WLS Fiber Readout with Geiger-mode APD Arrays

Scintillator/WLS Fiber Readout with Geiger-mode APD Arrays Scintillator/WLS Fiber Readout with Geiger-mode APD Arrays David Warner, Robert J. Wilson, Qinglin Zeng, Rey Nann Ducay Department of Physics Colorado State University Stefan Vasile apeak 63 Albert Road,

More information

Total Absorption Dual Readout Calorimetry R&D

Total Absorption Dual Readout Calorimetry R&D Available online at www.sciencedirect.com Physics Procedia 37 (2012 ) 309 316 TIPP 2011 - Technology and Instrumentation for Particle Physics 2011 Total Absorption Dual Readout Calorimetry R&D B. Bilki

More information

The digital Silicon Photomultiplier A novel Sensor for the Detection of Scintillation Light

The digital Silicon Photomultiplier A novel Sensor for the Detection of Scintillation Light The digital Silicon Photomultiplier A novel Sensor for the Detection of Scintillation Light Carsten Degenhardt, Gordian Prescher, Thomas Frach, Andreas Thon, Rik de Gruyter, Anja Schmitz, Rob Ballizany

More information

Arrays of digital Silicon Photomultipliers Intrinsic performance and Application to Scintillator Readout

Arrays of digital Silicon Photomultipliers Intrinsic performance and Application to Scintillator Readout Arrays of digital Silicon Photomultipliers Intrinsic performance and Application to Scintillator Readout Carsten Degenhardt, Ben Zwaans, Thomas Frach, Rik de Gruyter Philips Digital Photon Counting NSS-MIC

More information

Design of a Novel Front-End Readout ASIC for PET Imaging System *

Design of a Novel Front-End Readout ASIC for PET Imaging System * Journal of Signal and Information Processing, 2013, 4, 129-133 http://dx.doi.org/10.4236/jsip.2013.42018 Published Online May 2013 (http://www.scirp.org/journal/jsip) 129 Design of a Novel Front-End Readout

More information

Traditional analog QDC chain and Digital Pulse Processing [1]

Traditional analog QDC chain and Digital Pulse Processing [1] Giuliano Mini Viareggio April 22, 2010 Introduction The aim of this paper is to compare the energy resolution of two gamma ray spectroscopy setups based on two different acquisition chains; the first chain

More information

Simulation of Algorithms for Pulse Timing in FPGAs

Simulation of Algorithms for Pulse Timing in FPGAs 2007 IEEE Nuclear Science Symposium Conference Record M13-369 Simulation of Algorithms for Pulse Timing in FPGAs Michael D. Haselman, Member IEEE, Scott Hauck, Senior Member IEEE, Thomas K. Lewellen, Senior

More information

Study of Silicon Photomultipliers for Positron Emission Tomography (PET) Application

Study of Silicon Photomultipliers for Positron Emission Tomography (PET) Application Study of Silicon Photomultipliers for Positron Emission Tomography (PET) Application Eric Oberla 5 June 29 Abstract A relatively new photodetector, the silicon photomultiplier (SiPM), is well suited for

More information

Testing the Electronics for the MicroBooNE Light Collection System

Testing the Electronics for the MicroBooNE Light Collection System Testing the Electronics for the MicroBooNE Light Collection System Kathleen V. Tatem Nevis Labs, Columbia University & Fermi National Accelerator Laboratory August 3, 2012 Abstract This paper discusses

More information

Implementation of A Nanosecond Time-resolved APD Detector System for NRS Experiment in HEPS-TF

Implementation of A Nanosecond Time-resolved APD Detector System for NRS Experiment in HEPS-TF Implementation of A Nanosecond Time-resolved APD Detector System for NRS Experiment in HEPS-TF LI Zhen-jie a ; MA Yi-chao c ; LI Qiu-ju a ; LIU Peng a ; CHANG Jin-fan b ; ZHOU Yang-fan a * a Beijing Synchrotron

More information

Solid State Photomultiplier: Noise Parameters of Photodetectors with Internal Discrete Amplification

Solid State Photomultiplier: Noise Parameters of Photodetectors with Internal Discrete Amplification Solid State Photomultiplier: Noise Parameters of Photodetectors with Internal Discrete Amplification K. Linga, E. Godik, J. Krutov, D. Shushakov, L. Shubin, S.L. Vinogradov, and E.V. Levin Amplification

More information

Photon Counters SR430 5 ns multichannel scaler/averager

Photon Counters SR430 5 ns multichannel scaler/averager Photon Counters SR430 5 ns multichannel scaler/averager SR430 Multichannel Scaler/Averager 5 ns to 10 ms bin width Count rates up to 100 MHz 1k to 32k bins per record Built-in discriminator No interchannel

More information

Development of an innovative LSO-SiPM detector module for high-performance Positron Emission Tomography

Development of an innovative LSO-SiPM detector module for high-performance Positron Emission Tomography Development of an innovative LSO-SiPM detector module for high-performance Positron Emission Tomography Maria Leonor Trigo Franco Frazão leonorfrazao@ist.utl.pt Instituto Superior Técnico, Lisboa, Portugal

More information

Calibration of Scintillator Tiles with SiPM Readout

Calibration of Scintillator Tiles with SiPM Readout EUDET Calibration of Scintillator Tiles with SiPM Readout N. D Ascenzo, N. Feege,, B. Lutz, N. Meyer,, A. Vargas Trevino December 18, 2008 Abstract We report the calibration scheme for scintillator tiles

More information

Cosmic Rays in MoNA. Eric Johnson 8/08/03

Cosmic Rays in MoNA. Eric Johnson 8/08/03 Cosmic Rays in MoNA Eric Johnson 8/08/03 National Superconducting Cyclotron Laboratory Department of Physics and Astronomy Michigan State University Advisors: Michael Thoennessen and Thomas Baumann Abstract:

More information

Understanding the Properties of Gallium Implanted LGAD Timing Detectors

Understanding the Properties of Gallium Implanted LGAD Timing Detectors Understanding the Properties of Gallium Implanted LGAD Timing Detectors Arifin Luthfi Maulana 1 and Stefan Guindon 2 1 Institut Teknologi Bandung, Bandung, Indonesia 2 CERN, Geneva, Switzerland Corresponding

More information

Contents. The AMADEUS experiment at the DAFNE collider. The AMADEUS trigger. SiPM characterization and lab tests

Contents. The AMADEUS experiment at the DAFNE collider. The AMADEUS trigger. SiPM characterization and lab tests Contents The AMADEUS experiment at the DAFNE collider The AMADEUS trigger SiPM characterization and lab tests First trigger prototype; tests at the DAFNE beam Second prototype and tests at PSI beam Conclusions

More information

Concept and status of the LED calibration system

Concept and status of the LED calibration system Concept and status of the LED calibration system Mathias Götze, Julian Sauer, Sebastian Weber and Christian Zeitnitz 1 of 14 Short reminder on the analog HCAL Design is driven by particle flow requirements,

More information

SiPMs as detectors of Cherenkov photons

SiPMs as detectors of Cherenkov photons SiPMs as detectors of Cherenkov photons Peter Križan University of Ljubljana and J. Stefan Institute Light07, September 26, 2007 Contents Photon detection for Ring Imaging CHerenkov counters Can G-APDs

More information

Cosmic Ray Detector Hardware

Cosmic Ray Detector Hardware Cosmic Ray Detector Hardware How it detects cosmic rays, what it measures and how to use it Matthew Jones Purdue University 2012 QuarkNet Summer Workshop 1 What are Cosmic Rays? Mostly muons down here

More information

Silicon Photo Multiplier SiPM. Lecture 13

Silicon Photo Multiplier SiPM. Lecture 13 Silicon Photo Multiplier SiPM Lecture 13 Photo detectors Purpose: The PMTs that are usually employed for the light detection of scintillators are large, consume high power and are sensitive to the magnetic

More information

Development of LYSO detector modules for a charge-particle EDM polarimeter

Development of LYSO detector modules for a charge-particle EDM polarimeter Mitglied der Helmholtz-Gemeinschaft Development of LYSO detector modules for a charge-particle EDM polarimeter on behalf of the JEDI collaboration Dito Shergelashvili, PhD student @ SMART EDM_Lab, TSU,

More information

Fast first practical help -- detailed instructions will follow- preliminary Experiment F80

Fast first practical help -- detailed instructions will follow- preliminary Experiment F80 Fast first practical help -- detailed instructions will follow- preliminary Experiment F80 Measurement Methods of Nuclear and Particle Physics Introduction: This experiment is going to introduce you to

More information

RECENTLY, the Silicon Photomultiplier (SiPM) gained

RECENTLY, the Silicon Photomultiplier (SiPM) gained 2009 IEEE Nuclear Science Symposium Conference Record N28-5 The Digital Silicon Photomultiplier Principle of Operation and Intrinsic Detector Performance Thomas Frach, Member, IEEE, Gordian Prescher, Carsten

More information

ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION

ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION 98 Chapter-5 ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION 99 CHAPTER-5 Chapter 5: ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION S.No Name of the Sub-Title Page

More information

EKA Laboratory Muon Lifetime Experiment Instructions. October 2006

EKA Laboratory Muon Lifetime Experiment Instructions. October 2006 EKA Laboratory Muon Lifetime Experiment Instructions October 2006 0 Lab setup and singles rate. When high-energy cosmic rays encounter the earth's atmosphere, they decay into a shower of elementary particles.

More information

The CMS Outer HCAL SiPM Upgrade.

The CMS Outer HCAL SiPM Upgrade. The CMS Outer HCAL SiPM Upgrade. Artur Lobanov on behalf of the CMS collaboration DESY Hamburg CALOR 2014, Gießen, 7th April 2014 Outline > CMS Hadron Outer Calorimeter > Commissioning > Cosmic data Artur

More information

Data Acquisition System for the Angra Project

Data Acquisition System for the Angra Project Angra Neutrino Project AngraNote 012-2009 (Draft) Data Acquisition System for the Angra Project H. P. Lima Jr, A. F. Barbosa, R. G. Gama Centro Brasileiro de Pesquisas Físicas - CBPF L. F. G. Gonzalez

More information

P ILC A. Calcaterra (Resp.), L. Daniello (Tecn.), R. de Sangro, G. Finocchiaro, P. Patteri, M. Piccolo, M. Rama

P ILC A. Calcaterra (Resp.), L. Daniello (Tecn.), R. de Sangro, G. Finocchiaro, P. Patteri, M. Piccolo, M. Rama P ILC A. Calcaterra (Resp.), L. Daniello (Tecn.), R. de Sangro, G. Finocchiaro, P. Patteri, M. Piccolo, M. Rama Introduction and motivation for this study Silicon photomultipliers ), often called SiPM

More information

Gamma Ray Spectroscopy with NaI(Tl) and HPGe Detectors

Gamma Ray Spectroscopy with NaI(Tl) and HPGe Detectors Nuclear Physics #1 Gamma Ray Spectroscopy with NaI(Tl) and HPGe Detectors Introduction: In this experiment you will use both scintillation and semiconductor detectors to study γ- ray energy spectra. The

More information

X-RAY COMPUTED TOMOGRAPHY

X-RAY COMPUTED TOMOGRAPHY X-RAY COMPUTED TOMOGRAPHY Bc. Jan Kratochvíla Czech Technical University in Prague Faculty of Nuclear Sciences and Physical Engineering Abstract Computed tomography is a powerful tool for imaging the inner

More information

A new paradigm of synergy between "Engineering Education" and "Fundamental Scientific Research"

A new paradigm of synergy between Engineering Education and Fundamental Scientific Research Journal of Engineering Education Transformations, Volume, No, Month 205, ISSN 2349-2473, eissn 2394-707 A new paradigm of synergy between "Engineering Education" and "Fundamental Scientific Research" C

More information

PoS(PhotoDet 2012)016

PoS(PhotoDet 2012)016 SiPM Photodetectors for Highest Time Resolution in PET, E. Auffray, B. Frisch, T. Meyer, P. Jarron, P. Lecoq European Organization for Nuclear Research (CERN), 1211 Geneva 23, Switzerland E-mail: stefan.gundacker@cern.ch

More information

Virtual Laboratory of Nuclear Fission Virtual practicum in the framework of the project Virtual Laboratory of Nuclear Fission

Virtual Laboratory of Nuclear Fission Virtual practicum in the framework of the project Virtual Laboratory of Nuclear Fission Virtual Laboratory of Nuclear Fission Virtual practicum in the framework of the project Virtual Laboratory of Nuclear Fission Khanyisa Sowazi, University of the Western Cape JINR SAR, September 2015 INDEX

More information

LIFETIME OF THE MUON

LIFETIME OF THE MUON Muon Decay 1 LIFETIME OF THE MUON Introduction Muons are unstable particles; otherwise, they are rather like electrons but with much higher masses, approximately 105 MeV. Radioactive nuclear decays do

More information

GAMMA-GAMMA CORRELATION Latest Revision: August 21, 2007

GAMMA-GAMMA CORRELATION Latest Revision: August 21, 2007 C1-1 GAMMA-GAMMA CORRELATION Latest Revision: August 21, 2007 QUESTION TO BE INVESTIGATED: decay event? What is the angular correlation between two gamma rays emitted by a single INTRODUCTION & THEORY:

More information

ULS24 Frequently Asked Questions

ULS24 Frequently Asked Questions List of Questions 1 1. What type of lens and filters are recommended for ULS24, where can we source these components?... 3 2. Are filters needed for fluorescence and chemiluminescence imaging, what types

More information

Measuring Distance Using Sound

Measuring Distance Using Sound Measuring Distance Using Sound Distance can be measured in various ways: directly, using a ruler or measuring tape, or indirectly, using radio or sound waves. The indirect method measures another variable

More information

Cosmic Ray Muon Detection

Cosmic Ray Muon Detection Cosmic Ray Muon Detection Department of Physics and Space Sciences Florida Institute of Technology Georgia Karagiorgi Julie Slanker Advisor: Dr. M. Hohlmann Cosmic Ray Muons π + > µ + + ν µ π > µ + ν µ

More information

SiPMs for solar neutrino detector? J. Kaspar, 6/10/14

SiPMs for solar neutrino detector? J. Kaspar, 6/10/14 SiPMs for solar neutrino detector? J. Kaspar, 6/0/4 SiPM is photodiode APD Geiger Mode APD V APD full depletion take a photo-diode reverse-bias it above breakdown voltage (Geiger mode avalanche photo diode)

More information

Designing an MR compatible Time of Flight PET Detector Floris Jansen, PhD, Chief Engineer GE Healthcare

Designing an MR compatible Time of Flight PET Detector Floris Jansen, PhD, Chief Engineer GE Healthcare GE Healthcare Designing an MR compatible Time of Flight PET Detector Floris Jansen, PhD, Chief Engineer GE Healthcare There is excitement across the industry regarding the clinical potential of a hybrid

More information

THE Hadronic Tile Calorimeter (TileCal) is the central

THE Hadronic Tile Calorimeter (TileCal) is the central IEEE TRANSACTIONS ON NUCLEAR SCIENCE, VOL 53, NO 4, AUGUST 2006 2139 Digital Signal Reconstruction in the ATLAS Hadronic Tile Calorimeter E Fullana, J Castelo, V Castillo, C Cuenca, A Ferrer, E Higon,

More information

Real Time Pulse Pile-up Recovery in a High Throughput Digital Pulse Processor

Real Time Pulse Pile-up Recovery in a High Throughput Digital Pulse Processor Real Time Pulse Pile-up Recovery in a High Throughput Digital Pulse Processor Paul A. B. Scoullar a, Chris C. McLean a and Rob J. Evans b a Southern Innovation, Melbourne, Australia b Department of Electrical

More information

AMS-02 Anticounter. Philip von Doetinchem I. Physics Institute B, RWTH Aachen Bad Honnef, August 2007

AMS-02 Anticounter. Philip von Doetinchem I. Physics Institute B, RWTH Aachen Bad Honnef, August 2007 AMS-02 Anticounter Philip von Doetinchem philip.doetinchem@rwth-aachen.de I. Physics Institute B, RWTH Aachen Bad Honnef, August 2007 Michael Griffin, NASA Head AMS does not have a shuttle flight! Philip

More information

InGaAs SPAD freerunning

InGaAs SPAD freerunning InGaAs SPAD freerunning The InGaAs Single-Photon Counter is based on a InGaAs/InP SPAD for the detection of near-infrared single photons up to 1700 nm. The module includes a front-end circuit for fast

More information

A new Photon Counting Detector: Intensified CMOS- APS

A new Photon Counting Detector: Intensified CMOS- APS A new Photon Counting Detector: Intensified CMOS- APS M. Belluso 1, G. Bonanno 1, A. Calì 1, A. Carbone 3, R. Cosentino 1, A. Modica 4, S. Scuderi 1, C. Timpanaro 1, M. Uslenghi 2 1-I.N.A.F.-Osservatorio

More information

LHCb Preshower(PS) and Scintillating Pad Detector (SPD): commissioning, calibration, and monitoring

LHCb Preshower(PS) and Scintillating Pad Detector (SPD): commissioning, calibration, and monitoring LHCb Preshower(PS) and Scintillating Pad Detector (SPD): commissioning, calibration, and monitoring Eduardo Picatoste Olloqui on behalf of the LHCb Collaboration Universitat de Barcelona, Facultat de Física,

More information

A new Photon Counting Detector: Intensified CMOS- APS

A new Photon Counting Detector: Intensified CMOS- APS A new Photon Counting Detector: Intensified CMOS- APS M. Belluso 1, G. Bonanno 1, A. Calì 1, A. Carbone 3, R. Cosentino 1, A. Modica 4, S. Scuderi 1, C. Timpanaro 1, M. Uslenghi 2 1- I.N.A.F.-Osservatorio

More information

Soft X-ray sensitivity of a photon-counting hybrid pixel detector with a Silicon sensor matrix.

Soft X-ray sensitivity of a photon-counting hybrid pixel detector with a Silicon sensor matrix. Soft X-ray sensitivity of a photon-counting hybrid pixel detector with a Silicon sensor matrix. A. Fornaini 1, D. Calvet 1,2, J.L. Visschers 1 1 National Institute for Nuclear Physics and High-Energy Physics

More information

A PC-BASED TIME INTERVAL COUNTER WITH 200 PS RESOLUTION

A PC-BASED TIME INTERVAL COUNTER WITH 200 PS RESOLUTION A PC-BASED TIME INTERVAL COUNTER WITH 200 PS RESOLUTION Józef Kalisz and Ryszard Szplet Military University of Technology Kaliskiego 2, 00-908 Warsaw, Poland Tel: +48 22 6839016; Fax: +48 22 6839038 E-mail:

More information

Direct Measurement of Optical Cross-talk in Silicon Photomultipliers Using Light Emission Microscopy

Direct Measurement of Optical Cross-talk in Silicon Photomultipliers Using Light Emission Microscopy Direct Measurement of Optical Cross-talk in Silicon Photomultipliers Using Light Emission Microscopy Derek Strom, Razmik Mirzoyan, Jürgen Besenrieder Max-Planck-Institute for Physics, Munich, Germany 14

More information

A Measurement of the Photon Detection Efficiency of Silicon Photomultipliers

A Measurement of the Photon Detection Efficiency of Silicon Photomultipliers A Measurement of the Photon Detection Efficiency of Silicon Photomultipliers A. N. Otte a,, J. Hose a,r.mirzoyan a, A. Romaszkiewicz a, M. Teshima a, A. Thea a,b a Max Planck Institute for Physics, Föhringer

More information

PERFORMANCE COMPARISONS OF INTERFACE CIRCUITS FOR MEASURING CAPACITANCES

PERFORMANCE COMPARISONS OF INTERFACE CIRCUITS FOR MEASURING CAPACITANCES PERFORMANCE COMPARISONS OF INTERFACE CIRCUITS FOR MEASURING CAPACITANCES 1 PRABHU RAMANATHAN, 2 MARIMUTHU.R, 3 R. SARJILA, 4 SUDHA RAMASAMY and 5 P.ARULMOZHIVARMAN 1 Assistant Professor (Senior), School

More information

CATIROC a multichannel front-end ASIC to read out the SPMT system of the JUNO experiment

CATIROC a multichannel front-end ASIC to read out the SPMT system of the JUNO experiment CATIROC a multichannel front-end ASIC to read out the SPMT system of the JUNO experiment Dr. Selma Conforti (OMEGA/IN2P3/CNRS) OMEGA microelectronics group Ecole Polytechnique & CNRS IN2P3 http://omega.in2p3.fr

More information

Mass Spectrometry and the Modern Digitizer

Mass Spectrometry and the Modern Digitizer Mass Spectrometry and the Modern Digitizer The scientific field of Mass Spectrometry (MS) has been under constant research and development for over a hundred years, ever since scientists discovered that

More information

INDEX. Firmware for DPP (Digital Pulse Processing) DPP-PSD Digital Pulse Processing for Pulse Shape Discrimination

INDEX. Firmware for DPP (Digital Pulse Processing) DPP-PSD Digital Pulse Processing for Pulse Shape Discrimination Firmware for DPP (Digital Pulse Processing) Thanks to the powerful FPGAs available nowadays, it is possible to implement Digital Pulse Processing (DPP) algorithms directly on the acquisition boards and

More information

InGaAs SPAD BIOMEDICAL APPLICATION INDUSTRIAL APPLICATION ASTRONOMY APPLICATION QUANTUM APPLICATION

InGaAs SPAD BIOMEDICAL APPLICATION INDUSTRIAL APPLICATION ASTRONOMY APPLICATION QUANTUM APPLICATION InGaAs SPAD The InGaAs Single-Photon Counter is based on InGaAs/InP SPAD for the detection of Near-Infrared single photons up to 1700 nm. The module includes a pulse generator for gating the detector,

More information

Characterizing a single photon detector

Characterizing a single photon detector Michigan Technological University Digital Commons @ Michigan Tech Dissertations, Master's Theses and Master's Reports - Open Dissertations, Master's Theses and Master's Reports 2011 Characterizing a single

More information

Overview 256 channel Silicon Photomultiplier large area using matrix readout system The SensL Matrix detector () is the largest area, highest channel

Overview 256 channel Silicon Photomultiplier large area using matrix readout system The SensL Matrix detector () is the largest area, highest channel 技股份有限公司 wwwrteo 公司 wwwrteo.com Page 1 Overview 256 channel Silicon Photomultiplier large area using matrix readout system The SensL Matrix detector () is the largest area, highest channel count, Silicon

More information

Project Final Report: Directional Remote Control

Project Final Report: Directional Remote Control Project Final Report: by Luca Zappaterra xxxx@gwu.edu CS 297 Embedded Systems The George Washington University April 25, 2010 Project Abstract In the project, a prototype of TV remote control which reacts

More information

Solid-State Photomultiplier in CMOS Technology for Gamma-Ray Detection and Imaging Applications

Solid-State Photomultiplier in CMOS Technology for Gamma-Ray Detection and Imaging Applications Solid-State Photomultiplier in CMOS Technology for Gamma-Ray Detection and Imaging Applications Christopher Stapels, Member, IEEE, William G. Lawrence, James Christian, Member, IEEE, Michael R. Squillante,

More information

Signal Reconstruction of the ATLAS Hadronic Tile Calorimeter: implementation and performance

Signal Reconstruction of the ATLAS Hadronic Tile Calorimeter: implementation and performance Signal Reconstruction of the ATLAS Hadronic Tile Calorimeter: implementation and performance G. Usai (on behalf of the ATLAS Tile Calorimeter group) University of Texas at Arlington E-mail: giulio.usai@cern.ch

More information

What the LSA1000 Does and How

What the LSA1000 Does and How 2 About the LSA1000 What the LSA1000 Does and How The LSA1000 is an ideal instrument for capturing, digitizing and analyzing high-speed electronic signals. Moreover, it has been optimized for system-integration

More information

Scintillation counter with MRS APD light readout

Scintillation counter with MRS APD light readout Scintillation counter with MRS APD light readout A. Akindinov a, G. Bondarenko b, V. Golovin c, E. Grigoriev d, Yu. Grishuk a, D. Mal'kevich a, A. Martemiyanov a, M. Ryabinin a, A. Smirnitskiy a, K. Voloshin

More information

Multi-Channel Time Digitizing Systems

Multi-Channel Time Digitizing Systems 454 IEEE TRANSACTIONS ON APPLIED SUPERCONDUCTIVITY, VOL. 13, NO. 2, JUNE 2003 Multi-Channel Time Digitizing Systems Alex Kirichenko, Saad Sarwana, Deep Gupta, Irwin Rochwarger, and Oleg Mukhanov Abstract

More information

Diamond sensors as beam conditions monitors in CMS and LHC

Diamond sensors as beam conditions monitors in CMS and LHC Diamond sensors as beam conditions monitors in CMS and LHC Maria Hempel DESY Zeuthen & BTU Cottbus on behalf of the BRM-CMS and CMS-DESY groups GSI Darmstadt, 11th - 13th December 2011 Outline 1. Description

More information

arxiv: v2 [physics.ins-det] 17 Oct 2015

arxiv: v2 [physics.ins-det] 17 Oct 2015 arxiv:55.9v2 [physics.ins-det] 7 Oct 25 Performance of VUV-sensitive MPPC for Liquid Argon Scintillation Light T.Igarashi, S.Naka, M.Tanaka, T.Washimi, K.Yorita Waseda University, Tokyo, Japan E-mail:

More information

Performance of Microchannel Plates Fabricated Using Atomic Layer Deposition

Performance of Microchannel Plates Fabricated Using Atomic Layer Deposition Performance of Microchannel Plates Fabricated Using Atomic Layer Deposition Andrey Elagin on behalf of the LAPPD collaboration Introduction Performance (timing) Conclusions Large Area Picosecond Photo

More information

ARTICLE IN PRESS. Nuclear Instruments and Methods in Physics Research A

ARTICLE IN PRESS. Nuclear Instruments and Methods in Physics Research A Nuclear Instruments and Methods in Physics Research A 614 (2010) 308 312 Contents lists available at ScienceDirect Nuclear Instruments and Methods in Physics Research A journal homepage: www.elsevier.com/locate/nima

More information

New Features of IEEE Std Digitizing Waveform Recorders

New Features of IEEE Std Digitizing Waveform Recorders New Features of IEEE Std 1057-2007 Digitizing Waveform Recorders William B. Boyer 1, Thomas E. Linnenbrink 2, Jerome Blair 3, 1 Chair, Subcommittee on Digital Waveform Recorders Sandia National Laboratories

More information

Generation of Gaussian Pulses using FPGA for Simulating Nuclear Counting System

Generation of Gaussian Pulses using FPGA for Simulating Nuclear Counting System Generation of Gaussian Pulses using FPGA for Simulating Nuclear Counting System Mohaimina Begum Md. Abdullah Al Mamun Md. Atiar Rahman Sabiha Sattar Abstract- Nuclear radiation counting system is used

More information

Datasheet C400. Four Channel Pulse Counting Detector Controller

Datasheet C400. Four Channel Pulse Counting Detector Controller Four Channel Pulse Counting Detector Controller Features Four independent channels with fast discriminators, scalers, preamp power and high voltage. Able to control photomultipliers and APDs. 10 nsec pulse

More information

Simulations Guided Efforts to Understand MCP Performance

Simulations Guided Efforts to Understand MCP Performance University of Chicago Simulations Guided Efforts to Understand MCP Performance M. Wetstein, B. Adams, M. Chollet, A. Elagin, A. Vostrikov, R. Obaid, B. Hayhurst V. Ivanov, Z. Insepov, Q. Peng, A. Mane,

More information

Gamma Spectrometer Initial Project Proposal

Gamma Spectrometer Initial Project Proposal Gamma Spectrometer Initial Project Proposal Group 9 Aman Kataria Johnny Klarenbeek Dean Sullivan David Valentine Introduction There are currently two main types of gamma radiation detectors used for gamma

More information

Performance Evaluation of SiPM Detectors for PET Imaging in the Presence of Magnetic Fields

Performance Evaluation of SiPM Detectors for PET Imaging in the Presence of Magnetic Fields 2008 IEEE Nuclear Science Symposium Conference Record M02-4 Performance Evaluation of SiPM Detectors for PET Imaging in the Presence of Magnetic Fields Samuel España, Student Member, IEEE, Gustavo Tapias,

More information

DAQ & Electronics for the CW Beam at Jefferson Lab

DAQ & Electronics for the CW Beam at Jefferson Lab DAQ & Electronics for the CW Beam at Jefferson Lab Benjamin Raydo EIC Detector Workshop @ Jefferson Lab June 4-5, 2010 High Event and Data Rates Goals for EIC Trigger Trigger must be able to handle high

More information

RAPSODI RAdiation Protection with Silicon Optoelectronic Devices and Instruments

RAPSODI RAdiation Protection with Silicon Optoelectronic Devices and Instruments RAPSODI RAdiation Protection with Silicon Optoelectronic Devices and Instruments Massimo Caccia Universita dell Insubria Como (Italy) on behalf of The RAPSODI collaboration 11th Topical Seminar on Innovative

More information

PCS-150 / PCI-200 High Speed Boxcar Modules

PCS-150 / PCI-200 High Speed Boxcar Modules Becker & Hickl GmbH Kolonnenstr. 29 10829 Berlin Tel. 030 / 787 56 32 Fax. 030 / 787 57 34 email: info@becker-hickl.de http://www.becker-hickl.de PCSAPP.DOC PCS-150 / PCI-200 High Speed Boxcar Modules

More information

Chromatic X-Ray imaging with a fine pitch CdTe sensor coupled to a large area photon counting pixel ASIC

Chromatic X-Ray imaging with a fine pitch CdTe sensor coupled to a large area photon counting pixel ASIC Chromatic X-Ray imaging with a fine pitch CdTe sensor coupled to a large area photon counting pixel ASIC R. Bellazzini a,b, G. Spandre a*, A. Brez a, M. Minuti a, M. Pinchera a and P. Mozzo b a INFN Pisa

More information

Product Range Electronic Units

Product Range Electronic Units Pyramid Technical Consultants, Inc. 1050 Waltham Street Suite 200 Lexington, MA 02421 TEL: +1 781 402-1700 TEL (UK): +44 1273 492001 FAX: (781) 402-1750 EMAIL: SUPPORT@PTCUSA.COM Product Range Electronic

More information

A BaF2 calorimeter for Mu2e-II

A BaF2 calorimeter for Mu2e-II A BaF2 calorimeter for Mu2e-II I. Sarra, on behalf of LNF group Università degli studi Guglielmo Marconi Laboratori Nazionali di Frascati NEWS General Meeting 218 13 March 218 Proposal (1) q This technological

More information

Interpixel crosstalk in a 3D-integrated active pixel sensor for x-ray detection

Interpixel crosstalk in a 3D-integrated active pixel sensor for x-ray detection Interpixel crosstalk in a 3D-integrated active pixel sensor for x-ray detection The MIT Faculty has made this article openly available. Please share how this access benefits you. Your story matters. Citation

More information

Study of monitoring system of a calibration laser for the itop detector at Belle II

Study of monitoring system of a calibration laser for the itop detector at Belle II Università degli Studi di Padova Dipartimento di Fisica e Astronomia G. Galilei Corso di laurea in Fisica Tesi di Laurea Study of monitoring system of a calibration laser for the itop detector at Belle

More information

Developing a Generic Software-Defined Radar Transmitter using GNU Radio

Developing a Generic Software-Defined Radar Transmitter using GNU Radio Developing a Generic Software-Defined Radar Transmitter using GNU Radio A thesis submitted in partial fulfilment of the requirements for the degree of Master of Sciences (Defence Signal Information Processing)

More information

Time-of-flight PET with SiPM sensors on monolithic scintillation crystals Vinke, Ruud

Time-of-flight PET with SiPM sensors on monolithic scintillation crystals Vinke, Ruud University of Groningen Time-of-flight PET with SiPM sensors on monolithic scintillation crystals Vinke, Ruud IMPORTANT NOTE: You are advised to consult the publisher's version (publisher's PDF) if you

More information