Supporting Material 1. Actual design in FPGA

Size: px
Start display at page:

Download "Supporting Material 1. Actual design in FPGA"

Transcription

1 Supporting Material. Actual design in FPGA. FPGA and its peripheral circuit The circuit design was described with Verilog and developed with Xilinx ISE. The circuit was realized in a low- commercial FPGA board (Papilio Pro, Gadget Factory). This board is based on a Spartan-6 FPGA (XC6SLX9-2C, Xilinx). The internal clock 240 MHz was made by a phase locked loop (PLL) oscillator in the FPGA from a 32 MHz external oscillator on the board. A USB interface chip, FT2232D (Future Technology Devices International Ltd.), is equipped on the board, but, unfortunately, this chip can not be used because low data transfer rate. Since the transfer rate is a key issue in the recorder, a USB interface board with a faster chip, FT232H, was used (AE-FT232HL, Akizuki Denshi, Tokyo). The input signal from the detector was a 5V logic and a single fast CMOS 5V torrent logic, TC7SG34FU (Toshiba), was used as a level translator for the FPGA input. Four translators and the USB interface board were wired on a unversal board to use I/O of Papilio Pro. The construction problem will be reduced if one can use a FPGA board with a fast USB interface chip. As far as we know, there are some low Spartan-6 FPGA boards with a FT2232H USB interface chip (Saturn, Numato Systems Pvt. Ltd, Bangalore, India) or a FX2LP (CY7C6803, Cypress) USB interface chip (for exmaple, TKDN-SP6-6, Tokushudenshi, Tokyo, Japan; USB6, CESYS GmbH, Herzogenaurach, Germany). Since FT2232H (port A) is very similar to FT232H and FX2LP has more functions and a deep FIFO buffer, these board can probably be used in this recorder with some minor modifications of design. The connection is defined in the ucf file as follows: NET signals[3] LOC="P95" IOSTANDARD=LVTTL; # B9 L40P_GCLK_ NET signals[2] LOC="P8" IOSTANDARD=LVTTL; # A9 L46P_ NET signals[] LOC="P85" IOSTANDARD=LVTTL; # A L43P GCLK5 NET signals[0] LOC="P93" IOSTANDARD=LVTTL; # A3 L4P GCLK9 NET ft232_data[0] NET ft232_data[] NET ft232_data[2] NET ft232_data[3] NET ft232_data[4] NET ft232_data[5] NET ft232_data[6] NET ft232_data[7] LOC="P4" IOSTANDARD=LVTTL; # C0 L65N_0 LOC="P5" IOSTANDARD=LVTTL; # C L65P_0 LOC="P6" IOSTANDARD=LVTTL; # C2 L64N_0 LOC="P7" IOSTANDARD=LVTTL; # C3 L64P_0 LOC="P8" IOSTANDARD=LVTTL; # C4 L63N_0 LOC="P9" IOSTANDARD=LVTTL; # C5 L63P_0 LOC="P20" IOSTANDARD=LVTTL; # C6 L62N_VREF_0 LOC="P2" IOSTANDARD=LVTTL; # C7 L62P_0 NET ft232_oe_n LOC="P23" IOSTANDARD=LVTTL; # C8 L37PNGCLK2_0 NET ft232_clk LOC="P24" IOSTANDARD=LVTTL PERIOD = 6.67 ns; # C9 L37P_GCLK3_0 NET ft232_wr_n LOC="P26" IOSTANDARD=LVTTL; # C0 L36N_GCLK_0 NET ft232_rd_n LOC="P27" IOSTANDARD=LVTTL; # C L36P_GCLK_0 NET ft232_txe_n LOC="P3" IOSTANDARD=LVTTL; # C2 L35N_GCLK_0 NET ft232_rxf_n LOC="P32" IOSTANDARD=LVTTL; # C3 L35P_GCLK_0 All actual sources will be provided upon request to the author. The key codes in our concrete design were described below.

2 .2 Definition of ISERDES ISERDES2 in Spartan-6 was used in our design. ISERDES2 was programmed to work a 4-bit shift register and a input serial stream was stored in the register. The actual input, SIG, was connected to the input of ISERDES2. Clk ISERDES and Clk bin were the sampling clock 960 MHz and master clock 240 MHz, respectively. The definition of ISERDES2 and wiring are shown below: ISERDES2 #(.BITSLIP_ENABLE ("FALSE"),.DATA_RATE ("SDR"),.DATA_WIDTH (4),.INTERFACE_TYPE ("RETIMED"), // NETWORKING_PIPELINED.SERDES_MODE ("NONE")) iserdes2_master (.Q(bit_seq[3]), // old time time={t,t2,t3,t4} bit={q,q2,q3,q4}.q2(bit_seq[2]), // t4 > t.q3(bit_seq[]),.q4(bit_seq[0]), // recent time.shiftout(), // for cascading.incdec(),.valid(), // these are for phase detection mode.bitslip( b0),.ce0(ce), // Clock enable input.clk0(clk_iserdes),// IO Clock network input (the primary clock).clk( b0), // secondary IO clock network input for DDR mode.clkdiv(clk_bin), // Global clock network input. This is the clock for the fabric domain..d(sig_in_delay), // Input signal from IOB..IOCE(SERDES_STROBE), // Data strobe signal derived from BUFIO CE. Strobes data // capture for NETWORKING and NETWORKING_PIPELINES alignment modes..rst(reset), // Asynchronous reset only..shiftin(), // for Slave mode // unused connections.fabricout(),.cfb0(),.cfb(),.dfb() ); IBUF #(.IOSTANDARD ("LVTTL")) ibuf_inst0 (.I( SIG),.O(SIG_int)); assign SIG_in_delay = SIG_int; // if you insert IDELAY2, use here.3 Sampling and event detection The serial bit stream in the 4-bit register was analyzed to detect event. The initial edge of the detector signal carries the timing information of the photon arrival. Therefore, the transition of logic singal from low to high or from high to low, deping on the detector signal, was searched. The 2

3 input data stream, divided by 4 sampling times, is schematically illustrated in Fig.S. Since the transition may come the of the 4-bit register, one-more bit was used to keep the previous last bit. Then, the transition points in the 5-bit stream were detected and the positions were recoreded as event times as shown by the arrows in Fig.S. Since two bits are needed to detect the transition, the dead time of one sampling time always exists. The transition points were recorded in a two 2-bit data. The lower 2-bit, Detect, indicates the position with the coarse time resolution, when 4 sampling times was coarsen to 2 double sampling times. The higer 2-bit, DetectH, indicates the fine position in the coarse position. Therefore, each input stream was recorded in a 2-bit data and in a 4-bit data with coarse and fine time resolution (480 MHz and 960 MHz), respectively. sampling clock input stream master clock 0 transition point now 0 0 past time Detect (coarse resolution) DetectH (fine resolution) Fig.S The sampling stream and data structure. The essential part of the actual code of encoding is shown below: reg [3:0] detected; // timing of event assign Detect = detected[:0]; assign DetectH = detected[3:2]; reg keep_seq4; // last event of the previous bin // edge detect (the one of the edge timing is recorded) // timing resoultion is the half of the bin size // and encode de-serialized data (event time record) // Clk_bin) begin keep_seq4<= bit_seq[0]; // keep -bit for next bin case( {keep_seq4,bit_seq}) // if there is an inverter between the signal // and FPGA input, the following condition // should be inverted ( cond) // past <-> now old (/2) recent (/2) 5 b0000: begin detected[0] <= b0; detected[] <= b; detected[2] <= b0; detected[3] <= b; 5 b000: begin 3

4 ... skip detected[0] <= b0; detected[] <= b; detected[2] <= b0; detected[3] <= b0; 5 b00: begin detected[2] <= b; detected[3] <= b0; 5 b0: begin detected[2] <= b0; detected[3] <= b0; 5 b0000: begin detected[2] <= b0; detected[3] <= b0; 5 b000: begin detected[2] <= b; detected[3] <= b0; 5 b0000: begin detected[2] <= b; detected[3] <= b0; default: begin detected[0] <= b0; detected[] <= b0; detected[2] <= b0; detected[3] <= b0; case // All 32 patterns were encoded to 4-bits data. The absolute time running master clock (240 MHz) was also counted by 8-bit counter (not shown). In case of coarse time resolution, each 2-bit event data of 4-inputs and the 8-bit absolute time were recorded in a 6-bit data. In case of fine time resolution, each 4-bit event data of 2-inputs and the absolute time were recorded in a 6-bit data. These are shown in Fig. (b). When the absolute time counter is rolled over at each.07 µs, this is also considered as an event to be transferred to know the absolute time in the post process. For the check of inconsistency of the absolute time, another 8-bit counter was clocked by the rollover of the absolute time counter. This counter value was transferred using 8-bit event data byte when the roll over of the absolute time counter occurred but no input event. The 6-bit data was stored in a 6-bit first-in first-out (FIFO) memory, whose depth was 892. The output of the FIFO was 8-bits for the USB transceiver chip, FT232H. The chip was reading 8-bit data from the FIFO and transferred with the synchronous parallel FIFO mode of the chip. For the measurement of temporal profile, one channel is served to the reference channel. The photon counting rate is usually very low relative to the excitation rate. Therefore, if the all events 4

5 are recorded, most data does not contain the photon detection event. The excitation pulse rate is usually around an order of MHz or more. Therefore, the huge data size will mostly consume the band width of USB and waste the memory and storage. Therefore, the reference event was recorded only when the photon was detected to reduce the data size. In the actual measurements, the reference was appropriately delayed outside of the recorder to cover the time range of photon arrival and the reference event at the second channel was transferred if the photons were detected before the reference event. This is very similar to the reverse scheme of time-correlated single photon counting (TCSPC) system. TCSPC system can count only one event but this recorder can count all events associated with the one excitation pulse. This mode, temporal profile mode, was hardcoded in the FPGA and can be switched from the normal mode by a software controllable register. Currently, the temporal profile mode is passive because we aimed temporal profile measurements with this recorder with a minimum modification. However, there are two better options to ext this mode. The key of the both options is the synchronization between the master clock of the recorder and the external laser source. First option is the synchronization of master clock to the external clock source. In this case, the recorder design will become the external frequency depent because of the configuration of internal PLL oscillator to generate the master clock and seems to not be flexible. Second option is the opsite of the first option. This option is more easy and does not lose the flexibility. A programable clock generator design for the external laser source and an external interface logic circuit are only needed. This is the best option if the laser source is external triggerable. However, this option may not be good when the laser system includes a PLL feed back mechanism with some mode-locked lasers. The transfered data through USB2.0 were received with the bulk transfer mode. Two 8-bit data of the 6-bit data described above were simply transferred without any process with the synchronous parallel FIFO mode of FT232H. The program on the host computer was receiving data and keeping data in the memory not to miss the data. Thus, the memory size of the host computer is essential. The test of input maximum count rate showed the transfer of 8MHz periodic events without loss of data with a simple receiving software using libraries libftdi and libusb-.0 on a Linux system (Ubuntu 0.04) on a high PC (Precision T5400, X GHz, Dell). The 8MHz events are corresponding to 36Mbyte/sec. transfer rate and this value was very close to the specification limit rate 40Mbyte/sec. of FT232H. After all data were received in memory, then the data were recorded on the hard disk drive or processed appropriately. The control circuit was also desinged. Basically, the circuit managed the measurement mode like coarse or fine time resolution and temporal profile mode and the measurement setup like start, stop and measurement time. These were controlled by registers, whose bits modify the opration, by the software on the host computer through USB. Additionally, 4-channel frequency counters to monitor the count rate were embeded in the FPGA and the count values were transferred through the USB to serial UART chip (FT2232D) on Papilio Pro board. 5

6 2. Correlation Functions with Dynamic Light Scattering Measurements The recorder was tested by conducting a dynamic light scattering (DLS) measurements because the correlation time can be determined by the known parameters, such as wavelength, scattering angle, diameter of the scatter particle, temperature and viscosity of the solvent. A single mode laser at 785 nm was collimated and injected from one side of a cm 4-faces clear quartz cuvette in a 500 ml beaker filled water. The scattered light at 90 was detected by another collimator with a single mode fiber and guided to a multimode : fiber splitter for two single photon-counting detectors. The recorder was operated in the fine time resolution mode (.04 ns). The correlation function was calculated with the cross-correlation scheme. The samples were diluted NIST traceable latex microsphere solutions with 50, 00 and 50 nm particles in diamter. The temperature was C. Normalized g () (τ) Normalized g () (τ) τ (ms) 50nm τ (µs) Fig.S2 The normalized correlation functions of the scattering light. The correlation offset was subtracted and the amplitude was normalized to. Then, the horizontal axis was scaled by factor 2 to show the electric field correlation functions. Figure S2 shows the correlation functions (CFs) of the scattering light. The CFs almost decay as a single exponential function but the decay of the sample with the 50 nm microsphere was deviated upward at the tail. The deviation is probably due to the vibration of the optical table. The correlation function at the few nano-second region was dropped because of the dead time of the sampling (.04 ns) of the recorder. The other early part was very flat, indicating negligible radio frequency interference between the input channels. 6

7 Correlation time (ms) Diameter (nm) Fig.S3 The correlation time against the diameter of the microsphere and a linear fit of the data. Figure S3 shows the relationship between the diameter of the microsphere and the correlation time. The correlation time is proportional to the diameter and well fitted by a linear function. The slope 20.±0.5 µs/nm is very good agreement with 20.2 µs/nm calculated with the parameters as follows: wavelength 785 nm, refractive index.33, viscosity cp, temperature 296 K, the scattering angle 90. 7

8 3. Near-infrared fluorescence fluctuation system A near-infrared fluorescence fluctuation measurement system was constructed to demonstrate the application of the device. The system consists of an inverted epifluorescence microscope, an excitation source with a continuous wave (CW) laser (I0785SD000B, Innovative Photonics Solutions) at 785nm, and a homemade pulsed laser (T780P00S, Thorlabs) at 780nm driven by an avalanche pulser, and single photon counting detectors. The excitation laser was coupled to a polarization maintained single mode (PM-SM) fiber and collimated at the of the fiber to fill the aperture of an objective lens (Uplan Apo x63/water, Olympus). The fluorescence was collected by the same lens and separated from the excitation light by a dichroic mirror and an interference filter. The fluorescence was focused on an edge of a graded index multimode (GI-MM) fiber. The core of the fiber works as a confocal pinhole. A single photon counting detector was connected at the of the fiber. A : GI-MM fiber splitter was used to equally divide the detection light into two detectors for cross correlation measurements. A single photon photomultiplier tube module (H863-50, Hamamatsu) or a single photon avalanche detector (C , Hamamatsu) was selected because of the very low afterpulse characteristics. 4. Fluroescence correlation function of some near-infrared probes Figure S4 shows typical CFs with the IR806-BSA and BSA-QD solutions. The setup of the detection was cross-correlation mode to eliminate the distortion of the CF at an early time region less than 200-ns. The measurement times were 500 sec for IR806-BSA solution and 3000 sec for BSA-QD, respectively, to visualize the anti-bunching effect as described below. The CF with the BSA-QD solution shows a significant decrease at earlier than 00-ns, which is attributed to the anti-bunching effect. The excited state lifetime of this QD was about 00ns and the recovering time of the antibunching is very close to the lifetime. The CF of IR806-BSA was noisy at the early time region and the antibunching is not visible. This is probably due to very few photons dropped in a nano-second range, resulting very bad statistics in this time range. The CF was analyzed by a single component equation, G(τ) = n ( + τ/τ 0 ) ( + τ/τ 0 /s 2 ) /2 + () where n, τ 0 and s are the number of particles in the volume element defined by the confocal optics, correlation time and the structure parameter which is the ratio of the ellipsoidal shape of the focused volume, respectively [E.Elson, Biophys.J.0, 2855 (20)]. 8

9 G(τ) BSA-QD(CdSeTe/CdS) IR806-BSA Time (µs) Fig.S4 Fluorescence correlation functions of IR806- BSA and BSA-QD solutions. The correlation time is determined by ω 2 /(4D), where ω and D are the beam waist of the focused volume and the diffusion constant, respectively. The data can be fitted by the equation but the structure parameter could not be determined with a good accuracy and thus it was fixed to 5. The correlation time was strongly deping on the excitation power. The excitation power 6.4µW was chosen by the maximum power where the change of the CF became almost negligible but the fluorescence intensity was not too small. The correlation time was determined by the fitting to the above equation and the ratio of the hydrodynamic radius by the ratio of the correlation time. The correlation time of BSA-QD and IR806-BSA were 0.88-ms and 0.38-ms, respectively. Assuming the radius 3.3nm of IR806-BSA, the diameter of BSA-QD can be determined 7.7-nm, which is very good agreement with the other data, DLS and SEM. The count rate of the IR806- BSA and BSA-QD solutions were 2.6 and 3.63 kcps, respectively. The count per molecules of each solution becomes. kcps/molecule for IR806-BSA solution and.4 kcps/molecule for BSA-QD. 9

TCSPC at Wavelengths from 900 nm to 1700 nm

TCSPC at Wavelengths from 900 nm to 1700 nm TCSPC at Wavelengths from 900 nm to 1700 nm We describe picosecond time-resolved optical signal recording in the spectral range from 900 nm to 1700 nm. The system consists of an id Quantique id220 InGaAs

More information

IR Antibunching Measurements with id201 InGaAs Gated SPAD Detectors

IR Antibunching Measurements with id201 InGaAs Gated SPAD Detectors IR Antibunching Measurements with id201 GaAs Gated SPAD Detectors Abstract. Antibunching measurements with GaAs SPAD detectors are faced with the problems of high background count rate, afterpulsing, and

More information

I hope you have completed Part 2 of the Experiment and is ready for Part 3.

I hope you have completed Part 2 of the Experiment and is ready for Part 3. I hope you have completed Part 2 of the Experiment and is ready for Part 3. In part 3, you are going to use the FPGA to interface with the external world through a DAC and a ADC on the add-on card. You

More information

Optical Isolator Tutorial (Page 1 of 2) νlh, where ν, L, and H are as defined below. ν: the Verdet Constant, a property of the

Optical Isolator Tutorial (Page 1 of 2) νlh, where ν, L, and H are as defined below. ν: the Verdet Constant, a property of the Aspheric Optical Isolator Tutorial (Page 1 of 2) Function An optical isolator is a passive magneto-optic device that only allows light to travel in one direction. Isolators are used to protect a source

More information

PZ-FLIM-110. Piezo Scanning FLIM System. Based on bh s Megapixel FLIM Technology. Complete FLIM Microscopes FLIM Upgrades for Existing Microscopes

PZ-FLIM-110. Piezo Scanning FLIM System. Based on bh s Megapixel FLIM Technology. Complete FLIM Microscopes FLIM Upgrades for Existing Microscopes Based on bh s Megapixel FLIM Technology Complete FLIM Microscopes FLIM Upgrades for Existing Microscopes Multidimensional TCSPC technique Sample Scanning by Piezo Stage Compact Electronics, Controlled

More information

TCSPC measurements with the InGaAs/InP Single- photon counter

TCSPC measurements with the InGaAs/InP Single- photon counter TCSPC measurements with the InGaAs/InP Single-photon counter A typical setup in which the InGaAs/InP Single- Photon Detection Module is widely employed is a photon- timing one, as illustrated in Figure

More information

Akinori Mitani and Geoff Weiner BGGN 266 Spring 2013 Non-linear optics final report. Introduction and Background

Akinori Mitani and Geoff Weiner BGGN 266 Spring 2013 Non-linear optics final report. Introduction and Background Akinori Mitani and Geoff Weiner BGGN 266 Spring 2013 Non-linear optics final report Introduction and Background Two-photon microscopy is a type of fluorescence microscopy using two-photon excitation. It

More information

Nature Structural & Molecular Biology: doi: /nsmb Supplementary Figure 1

Nature Structural & Molecular Biology: doi: /nsmb Supplementary Figure 1 Supplementary Figure 1 Supplemental correlative nanomanipulation-fluorescence traces probing nascent RNA and fluorescent Mfd during TCR initiation. Supplemental correlative nanomanipulation-fluorescence

More information

Non-Descanned FLIM Detection in Multiphoton Microscopes

Non-Descanned FLIM Detection in Multiphoton Microscopes Non-Descanned FLIM Detection in Multiphoton Microscopes Abstract. Multiphoton microscopes use a femtosecond NIR laser to excite fluorescence in the sample. Excitation is performed via a multi-photon absorption

More information

Supplementary Figure S1. Schematic representation of different functionalities that could be

Supplementary Figure S1. Schematic representation of different functionalities that could be Supplementary Figure S1. Schematic representation of different functionalities that could be obtained using the fiber-bundle approach This schematic representation shows some example of the possible functions

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

picoemerald Tunable Two-Color ps Light Source Microscopy & Spectroscopy CARS SRS

picoemerald Tunable Two-Color ps Light Source Microscopy & Spectroscopy CARS SRS picoemerald Tunable Two-Color ps Light Source Microscopy & Spectroscopy CARS SRS 1 picoemerald Two Colors in One Box Microscopy and Spectroscopy with a Tunable Two-Color Source CARS and SRS microscopy

More information

BDS-MM Family Picosecond Diode Lasers

BDS-MM Family Picosecond Diode Lasers BDS-MM Family Picosecond Diode s Optical power up to 60 mw at MHz Wavelengths 405, 445, 525, 640, 685, 785, 915 nm Power up to 60mW, multi-mode Small-size laser module, 40 mm x 40 mm x 120 mm Free-beam

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

Instrument response function. Left linear scale, right logarithmic scale. FWHM is 120 ps.

Instrument response function. Left linear scale, right logarithmic scale. FWHM is 120 ps. High Speed Hybrid Detector for TCSPC HPM-100-40 GaAsP cathode: Excellent detection efficiency Instrument response function 120 ps FWHM Clean response, no tails or secondary peaks No afterpulsing Excellent

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

Single-photon excitation of morphology dependent resonance

Single-photon excitation of morphology dependent resonance Single-photon excitation of morphology dependent resonance 3.1 Introduction The examination of morphology dependent resonance (MDR) has been of considerable importance to many fields in optical science.

More information

Redefining Measurement ID101 OEM Visible Photon Counter

Redefining Measurement ID101 OEM Visible Photon Counter Redefining Measurement ID OEM Visible Photon Counter Miniature Photon Counter for OEM Applications Intended for large-volume OEM applications, the ID is the smallest, most reliable and most efficient single-photon

More information

Simple setup for nano-second time-resolved spectroscopic measurements by a digital storage oscilloscope

Simple setup for nano-second time-resolved spectroscopic measurements by a digital storage oscilloscope NOTE Simple setup for nano-second time-resolved spectroscopic measurements by a digital storage oscilloscope Goro Nishimura and Mamoru Tamura Biophysics, Research Institute for Electronic Science, Hokkaido

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

DCS-120. Confocal Scanning FLIM Systems. Based on bh s Multidimensional Megapixel FLIM Technology

DCS-120. Confocal Scanning FLIM Systems. Based on bh s Multidimensional Megapixel FLIM Technology Based on bh s Multidimensional Megapixel FLIM Technology Complete Laser Scanning FLIM Microscopes FLIM Upgrades for Existing Conventional Microscopes Multidimensional TCSPC technique High throughput dual-channel

More information

Angular Drift of CrystalTech (1064nm, 80MHz) AOMs due to Thermal Transients. Alex Piggott

Angular Drift of CrystalTech (1064nm, 80MHz) AOMs due to Thermal Transients. Alex Piggott Angular Drift of CrystalTech 38 197 (164nm, 8MHz) AOMs due to Thermal Transients Alex Piggott July 5, 21 1 .1 General Overview of Findings The AOM was found to exhibit significant thermal drift effects,

More information

Multi-channel imaging cytometry with a single detector

Multi-channel imaging cytometry with a single detector Multi-channel imaging cytometry with a single detector Sarah Locknar 1, John Barton 1, Mark Entwistle 2, Gary Carver 1 and Robert Johnson 1 1 Omega Optical, Brattleboro, VT 05301 2 Philadelphia Lightwave,

More information

Solea. Supercontinuum Laser. Applications

Solea. Supercontinuum Laser. Applications Solea Supercontinuum Laser Extended Spectral range: 525 nm - 900 nm (ECO mode), 480 nm - 900 nm (BOOST mode) Extended 2-year worldwide warranty* Supercontinuum output or wavelength selected output through

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Electrical Engineering and Computer Science

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Electrical Engineering and Computer Science Student Name Date MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Electrical Engineering and Computer Science 6.161 Modern Optics Project Laboratory Laboratory Exercise No. 6 Fall 2010 Solid-State

More information

INF3430 Clock and Synchronization

INF3430 Clock and Synchronization INF3430 Clock and Synchronization P.P.Chu Using VHDL Chapter 16.1-6 INF 3430 - H12 : Chapter 16.1-6 1 Outline 1. Why synchronous? 2. Clock distribution network and skew 3. Multiple-clock system 4. Meta-stability

More information

Spectral phase shaping for high resolution CARS spectroscopy around 3000 cm 1

Spectral phase shaping for high resolution CARS spectroscopy around 3000 cm 1 Spectral phase shaping for high resolution CARS spectroscopy around 3 cm A.C.W. van Rhijn, S. Postma, J.P. Korterik, J.L. Herek, and H.L. Offerhaus Mesa + Research Institute for Nanotechnology, University

More information

M. N. Trainer and P. J. Freud. Application Note. SL-AN-05 Revision D. Provided By: Microtrac, Inc. Particle Size Measuring Instrumentation

M. N. Trainer and P. J. Freud. Application Note. SL-AN-05 Revision D. Provided By: Microtrac, Inc. Particle Size Measuring Instrumentation High-Concentration Submicron Particle Size Distribution by Dynamic Light Scattering: Power spectrum development with heterodyne technology advances biotechnology and nanotechnology measurements M. N. Trainer

More information

nanomca 80 MHz HIGH PERFORMANCE, LOW POWER DIGITAL MCA Model Numbers: NM0530 and NM0530Z

nanomca 80 MHz HIGH PERFORMANCE, LOW POWER DIGITAL MCA Model Numbers: NM0530 and NM0530Z datasheet nanomca 80 MHz HIGH PERFORMANCE, LOW POWER DIGITAL MCA Model Numbers: NM0530 and NM0530Z I. FEATURES Finger-sized, high performance digital MCA. 16k channels utilizing smart spectrum-size technology

More information

CHAPTER 9 POSITION SENSITIVE PHOTOMULTIPLIER TUBES

CHAPTER 9 POSITION SENSITIVE PHOTOMULTIPLIER TUBES CHAPTER 9 POSITION SENSITIVE PHOTOMULTIPLIER TUBES The current multiplication mechanism offered by dynodes makes photomultiplier tubes ideal for low-light-level measurement. As explained earlier, there

More information

The below identified patent application is available for licensing. Requests for information should be addressed to:

The below identified patent application is available for licensing. Requests for information should be addressed to: DEPARTMENT OF THE NAVY OFFICE OF COUNSEL NAVAL UNDERSEA WARFARE CENTER DIVISION 1176 HOWELL STREET NEWPORT Rl 0841-1708 IN REPLY REFER TO Attorney Docket No. 300048 7 February 017 The below identified

More information

BDS-SM Family Picosecond Diode Lasers

BDS-SM Family Picosecond Diode Lasers BDS-SM Family Picosecond Diode s BDS-SM Small-size OEM Module, 40 mm x 40 mm x 120 mm Wavelengths 375 nm, 405 nm, 445 nm, 473 nm, 488 nm, 515 nm, 640 nm, 685 nm, 785 nm, 1064 nm Free-beam or single-mode

More information

Non-Linear Optical Flow Cytometry Using a Scanned, Bessel Beam Light-Sheet

Non-Linear Optical Flow Cytometry Using a Scanned, Bessel Beam Light-Sheet 1 Non-Linear Optical Flow Cytometry Using a Scanned, essel eam Light-Sheet Supplementary Information radley. Collier 1, Samir Awasthi 1,2, Deborah K. Lieu 3, James W. Chan 1,4* 1 Center for iophotonics,

More information

DeltaMyc. Fluorescence Lifetime Mapping Microscope. Affordable Fluorescence Lifetime Imaging Microscopy (FLIM)

DeltaMyc. Fluorescence Lifetime Mapping Microscope. Affordable Fluorescence Lifetime Imaging Microscopy (FLIM) DeltaMyc Fluorescence Lifetime Mapping Microscope Affordable Fluorescence Lifetime Imaging Microscopy (FLIM) DeltaMyc Affordable Fluorescence Imaging Lifetime Microscopy (FLIM) At last, an affordable yet

More information

CHAPTER III THE FPGA IMPLEMENTATION OF PULSE WIDTH MODULATION

CHAPTER III THE FPGA IMPLEMENTATION OF PULSE WIDTH MODULATION 34 CHAPTER III THE FPGA IMPLEMENTATION OF PULSE WIDTH MODULATION 3.1 Introduction A number of PWM schemes are used to obtain variable voltage and frequency supply. The Pulse width of PWM pulsevaries with

More information

Electronic Readout System for Belle II Imaging Time of Propagation Detector

Electronic Readout System for Belle II Imaging Time of Propagation Detector Electronic Readout System for Belle II Imaging Time of Propagation Detector Dmitri Kotchetkov University of Hawaii at Manoa for Belle II itop Detector Group March 3, 2017 Barrel Particle Identification

More information

TRAINING MANUAL. Multiphoton Microscopy LSM 510 META-NLO

TRAINING MANUAL. Multiphoton Microscopy LSM 510 META-NLO TRAINING MANUAL Multiphoton Microscopy LSM 510 META-NLO September 2010 Multiphoton Microscopy Training Manual Multiphoton microscopy is only available on the LSM 510 META-NLO system. This system is equipped

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

Supplementary Information:

Supplementary Information: Supplementary Information: This document contains supplementary text discussing the methods used, figures providing information on the QD sample and level structure (Fig. S), key components of the experimental

More information

Detectors for microscopy - CCDs, APDs and PMTs. Antonia Göhler. Nov 2014

Detectors for microscopy - CCDs, APDs and PMTs. Antonia Göhler. Nov 2014 Detectors for microscopy - CCDs, APDs and PMTs Antonia Göhler Nov 2014 Detectors/Sensors in general are devices that detect events or changes in quantities (intensities) and provide a corresponding output,

More information

Implementation of High Precision Time to Digital Converters in FPGA Devices

Implementation of High Precision Time to Digital Converters in FPGA Devices Implementation of High Precision Time to Digital Converters in FPGA Devices Tobias Harion () Implementation of HPTDCs in FPGAs January 22, 2010 1 / 27 Contents: 1 Methods for time interval measurements

More information

Characteristics of point-focus Simultaneous Spatial and temporal Focusing (SSTF) as a two-photon excited fluorescence microscopy

Characteristics of point-focus Simultaneous Spatial and temporal Focusing (SSTF) as a two-photon excited fluorescence microscopy Characteristics of point-focus Simultaneous Spatial and temporal Focusing (SSTF) as a two-photon excited fluorescence microscopy Qiyuan Song (M2) and Aoi Nakamura (B4) Abstracts: We theoretically and experimentally

More information

Digital Systems Design

Digital Systems Design Digital Systems Design Clock Networks and Phase Lock Loops on Altera Cyclone V Devices Dr. D. J. Jackson Lecture 9-1 Global Clock Network & Phase-Locked Loops Clock management is important within digital

More information

photolithographic techniques (1). Molybdenum electrodes (50 nm thick) are deposited by

photolithographic techniques (1). Molybdenum electrodes (50 nm thick) are deposited by Supporting online material Materials and Methods Single-walled carbon nanotube (SWNT) devices are fabricated using standard photolithographic techniques (1). Molybdenum electrodes (50 nm thick) are deposited

More information

BEAMAGE-3.0 KEY FEATURES BEAM DIAGNOSTICS AVAILABLE MODELS MAIN FUNCTIONS SEE ALSO ACCESSORIES. CMOS Beam Profiling Cameras

BEAMAGE-3.0 KEY FEATURES BEAM DIAGNOSTICS AVAILABLE MODELS MAIN FUNCTIONS SEE ALSO ACCESSORIES. CMOS Beam Profiling Cameras BEAM DIAGNOSTICS BEAM DIAGNOSTICS SPECIAL PRODUCTS OEM DETECTORS THZ DETECTORS PHOTO DETECTORS HIGH POWER DETECTORS POWER DETECTORS ENERGY DETECTORS MONITORS CMOS Beam Profiling Cameras AVAILABLE MODELS

More information

BDS-SM Family Picosecond Diode Lasers

BDS-SM Family Picosecond Diode Lasers BDS-SM Family Picosecond Diode s BDS-SM Small-size OEM Module, 40 mm x 40 mm x 120 mm Wavelengths 375 nm, 405 nm, 445 nm, 473 nm, 488 nm, 515 nm, 640 nm, 685 nm, 785 nm, 1064 nm Free-beam or single-mode

More information

Coherent Laser Measurement and Control Beam Diagnostics

Coherent Laser Measurement and Control Beam Diagnostics Coherent Laser Measurement and Control M 2 Propagation Analyzer Measurement and display of CW laser divergence, M 2 (or k) and astigmatism sizes 0.2 mm to 25 mm Wavelengths from 220 nm to 15 µm Determination

More information

Meeting Measurement Challenges For Low-Power, Pulsed, Or Modulated Light Sources

Meeting Measurement Challenges For Low-Power, Pulsed, Or Modulated Light Sources Meeting Measurement Challenges For Low-Power, Pulsed, Or Modulated Light Sources By Denise Ullery, Sylvia Tan, and Jay Jeong, Newport Corporation (www.newport.com) Traditionally, power meters have been

More information

Information & Instructions

Information & Instructions KEY FEATURES 1. USB 3.0 For the Fastest Transfer Rates Up to 10X faster than regular USB 2.0 connections (also USB 2.0 compatible) 2. High Resolution 4.2 MegaPixels resolution gives accurate profile measurements

More information

Point Spread Function. Confocal Laser Scanning Microscopy. Confocal Aperture. Optical aberrations. Alternative Scanning Microscopy

Point Spread Function. Confocal Laser Scanning Microscopy. Confocal Aperture. Optical aberrations. Alternative Scanning Microscopy Bi177 Lecture 5 Adding the Third Dimension Wide-field Imaging Point Spread Function Deconvolution Confocal Laser Scanning Microscopy Confocal Aperture Optical aberrations Alternative Scanning Microscopy

More information

Lab4 Hanbury Brown and Twiss Setup. Photon Antibunching

Lab4 Hanbury Brown and Twiss Setup. Photon Antibunching Lab4 Hanbury Brown and Twiss Setup. Photon Antibunching Shule Li Abstract Antibunching is a purely quantum effect and cannot be realized from the classical theory of light. By observing the antibunching

More information

Department of Electrical Engineering and Computer Science

Department of Electrical Engineering and Computer Science MASSACHUSETTS INSTITUTE of TECHNOLOGY Department of Electrical Engineering and Computer Science 6.161/6637 Practice Quiz 2 Issued X:XXpm 4/XX/2004 Spring Term, 2004 Due X:XX+1:30pm 4/XX/2004 Please utilize

More information

ERS KEY FEATURES BEAM DIAGNOSTICS MAIN FUNCTIONS AVAILABLE MODEL. CMOS Beam Profiling Camera. 1 USB 3.0 for the Fastest Transfer Rates

ERS KEY FEATURES BEAM DIAGNOSTICS MAIN FUNCTIONS AVAILABLE MODEL. CMOS Beam Profiling Camera. 1 USB 3.0 for the Fastest Transfer Rates POWER DETECTORS ENERGY DETECTORS MONITORS SPECIAL PRODUCTS OEM DETECTORS THZ DETECTORS PHOTO DETECTORS HIGH POWER DETECTORS CAMERA PROFIL- CMOS Beam Profiling Camera KEY FEATURES ERS 1 USB 3.0 for the

More information

Analog Arts SL987 SL957 SL937 SL917 Product Specifications [1]

Analog Arts SL987 SL957 SL937 SL917 Product Specifications [1] www.analogarts.com Analog Arts SL987 SL957 SL937 SL917 Product Specifications [1] 1. These models include: an oscilloscope, a spectrum analyzer, a data recorder, a frequency & phase meter, an arbitrary

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 ICASiPM,

More information

New applications are transforming the UV-LED market, and Nikkiso Deep UV-LED devices are applicable to many important applications including:

New applications are transforming the UV-LED market, and Nikkiso Deep UV-LED devices are applicable to many important applications including: LED Ultraviolet Light Emitting Diodes (UV-LED) Nikkiso s advantaged UV-LED products all with high performance and reliability at an affordable cost. Along with our sglux UV sensors and probes, Boston Electronics

More information

Optical Delay Line Application Note

Optical Delay Line Application Note 1 Optical Delay Line Application Note 1.1 General Optical delay lines system (ODL), incorporates a high performance lasers such as DFBs, optical modulators for high operation frequencies, photodiodes,

More information

Bandpass Edge Dichroic Notch & More

Bandpass Edge Dichroic Notch & More Edmund Optics BROCHURE Filters COPYRIGHT 217 EDMUND OPTICS, INC. ALL RIGHTS RESERVED 1/17 Bandpass Edge Dichroic Notch & More Contact us for a Stock or Custom Quote Today! USA: +1-856-547-3488 EUROPE:

More information

Picosecond Time Analyzer Applications in...

Picosecond Time Analyzer Applications in... ORTEC AN52 Picosecond Time Analyzer Applications in... LIDAR and DIAL Time-of-Flight Mass Spectrometry Fluorescence/Phosphorescence Lifetime Spectrometry Pulse or Signal Jitter Analysis CONTENTS of this

More information

NSOM (SNOM) Overview

NSOM (SNOM) Overview NSOM (SNOM) Overview The limits of far field imaging In the early 1870s, Ernst Abbe formulated a rigorous criterion for being able to resolve two objects in a light microscope: d > ë / (2sinè) where d

More information

PERFORMANCE OF PHOTODIGM S DBR SEMICONDUCTOR LASERS FOR PICOSECOND AND NANOSECOND PULSING APPLICATIONS

PERFORMANCE OF PHOTODIGM S DBR SEMICONDUCTOR LASERS FOR PICOSECOND AND NANOSECOND PULSING APPLICATIONS PERFORMANCE OF PHOTODIGM S DBR SEMICONDUCTOR LASERS FOR PICOSECOND AND NANOSECOND PULSING APPLICATIONS By Jason O Daniel, Ph.D. TABLE OF CONTENTS 1. Introduction...1 2. Pulse Measurements for Pulse Widths

More information

Source Coding and Pre-emphasis for Double-Edged Pulse width Modulation Serial Communication

Source Coding and Pre-emphasis for Double-Edged Pulse width Modulation Serial Communication Source Coding and Pre-emphasis for Double-Edged Pulse width Modulation Serial Communication Abstract: Double-edged pulse width modulation (DPWM) is less sensitive to frequency-dependent losses in electrical

More information

The DCS-120 Confocal Scanning FLIM System

The DCS-120 Confocal Scanning FLIM System he DCS-120 Confocal Scanning FLIM System he bh DCS-120 confocal scanning FLIM system converts a conventional microscope into a high-performance fluorescence lifetime imaging system. he system is based

More information

The rangefinder can be configured using an I2C machine interface. Settings control the

The rangefinder can be configured using an I2C machine interface. Settings control the Detailed Register Definitions The rangefinder can be configured using an I2C machine interface. Settings control the acquisition and processing of ranging data. The I2C interface supports a transfer rate

More information

Supplemental Method Information Zeiss LSM710

Supplemental Method Information Zeiss LSM710 Supplemental Method Information Zeiss LSM710 1 Under the Light Path window set up the confocal for imaging a green dye (Alexa488-EGFP). For example, set up the light path as shown here using the 488 nm

More information

11Beamage-3. CMOS Beam Profiling Cameras

11Beamage-3. CMOS Beam Profiling Cameras 11Beamage-3 CMOS Beam Profiling Cameras Key Features USB 3.0 FOR THE FASTEST TRANSFER RATES Up to 10X faster than regular USB 2.0 connections (also USB 2.0 compatible) HIGH RESOLUTION 2.2 MPixels resolution

More information

An 8-Channel Parallel Multispectral TCSPC FLIM System

An 8-Channel Parallel Multispectral TCSPC FLIM System An 8-Channel Parallel Multispectral TCSPC FLIM System Abstract. We describe a TCSPC FLIM system that uses 8 parallel TCSPC channels to record FLIM data at a peak count rate on the order of 50 10 6 s -1.

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

The Speed of Light Laboratory Experiment 8. Introduction

The Speed of Light Laboratory Experiment 8. Introduction Exp-8-Speed of Light.doc (TJR) Physics Department, University of Windsor 64-311 Laboratory Experiment 8 The Speed of Light Introduction Galileo was right. Light did not travel instantaneously as his contemporaries

More information

PoS(PhotoDet 2012)051

PoS(PhotoDet 2012)051 Optical to electrical detection delay in avalanche photodiode based detector and its interpretation Josef Blažej 1 E-mail: blazej@fjfi.cvut.cz Ivan Procházka Jan Kodet Technical University in Munich FSG,

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

PMT tests at UMD. Vlasios Vasileiou Version st May 2006

PMT tests at UMD. Vlasios Vasileiou Version st May 2006 PMT tests at UMD Vlasios Vasileiou Version 1.0 1st May 2006 Abstract This memo describes the tests performed on three Milagro PMTs in UMD. Initially, pulse-height distributions of the PMT signals were

More information

THE TUNABLE LASER LIGHT SOURCE C-WAVE. HÜBNER Photonics Coherence Matters.

THE TUNABLE LASER LIGHT SOURCE C-WAVE. HÜBNER Photonics Coherence Matters. THE TUNABLE LASER LIGHT SOURCE HÜBNER Photonics Coherence Matters. FLEXIBILITY WITH PRECISION is the tunable laser light source for continuous-wave (cw) emission in the visible and near-infrared wavelength

More information

Optical to Electrical Converter

Optical to Electrical Converter Optical to Electrical Converter By Dietrich Reimer Senior Project ELECTRICAL ENGINEERING DEPARTMENT California Polytechnic State University San Luis Obispo 2010 1 Table of Contents List of Tables and Figures...

More information

SUPPLEMENTARY INFORMATION

SUPPLEMENTARY INFORMATION SUPPLEMENTARY INFORMATION doi:10.1038/nature10864 1. Supplementary Methods The three QW samples on which data are reported in the Letter (15 nm) 19 and supplementary materials (18 and 22 nm) 23 were grown

More information

A new Infra-Red Camera for COAST. Richard Neill - PhD student Supervisor: Dr John Young

A new Infra-Red Camera for COAST. Richard Neill - PhD student Supervisor: Dr John Young A new Infra-Red Camera for COAST Richard Neill - PhD student Supervisor: Dr John Young The Cambridge Optical Aperture-Synthesis Telescope: COAST is a

More information

Absolute distance interferometer in LaserTracer geometry

Absolute distance interferometer in LaserTracer geometry Absolute distance interferometer in LaserTracer geometry Corresponding author: Karl Meiners-Hagen Abstract 1. Introduction 1 In this paper, a combination of variable synthetic and two-wavelength interferometry

More information

Clock and Data Recovery With Coded Data Streams Author: Leonard Dieguez

Clock and Data Recovery With Coded Data Streams Author: Leonard Dieguez Application Note: Virtex-II Family XAPP250 (v1.3) September 19, 2003 Clock and Data ecovery With Coded Data Streams Author: Leonard Dieguez Summary This application note and reference design outline a

More information

Analog Arts SF990 SF880 SF830 Product Specifications

Analog Arts SF990 SF880 SF830 Product Specifications 1 www.analogarts.com Analog Arts SF990 SF880 SF830 Product Specifications Analog Arts reserves the right to change, modify, add or delete portions of any one of its specifications at any time, without

More information

nanomca datasheet I. FEATURES

nanomca datasheet I. FEATURES datasheet nanomca I. FEATURES Finger-sized, high performance digital MCA. 16k channels utilizing smart spectrum-size technology -- all spectra are recorded and stored as 16k spectra with instant, distortion-free

More information

Wide-Field TCSPC FLIM with bh SPC-150 N TCSPC System and Photek FGN Detector

Wide-Field TCSPC FLIM with bh SPC-150 N TCSPC System and Photek FGN Detector Wide-Field TCSPC FLIM with bh SPC-150 N TCSPC System and Photek FGN 392-1000 Detector Abstract: We present a wide-field TCSPC FLIM system consisting of a position-sensitive MCP PMT of the delay-line type,

More information

Gentec-EO USA. T-RAD-USB Users Manual. T-Rad-USB Operating Instructions /15/2010 Page 1 of 24

Gentec-EO USA. T-RAD-USB Users Manual. T-Rad-USB Operating Instructions /15/2010 Page 1 of 24 Gentec-EO USA T-RAD-USB Users Manual Gentec-EO USA 5825 Jean Road Center Lake Oswego, Oregon, 97035 503-697-1870 voice 503-697-0633 fax 121-201795 11/15/2010 Page 1 of 24 System Overview Welcome to the

More information

Supporting Information

Supporting Information Supporting Information Copyright Wiley-VCH Verlag GmbH & Co. KGaA, 69451 Weinheim, 2014 Two-Color RESOLFT Nanoscopy with Green and Red Fluorescent Photochromic Proteins** Flavie Lavoie-Cardinal, [a] Nickels

More information

Cavity QED with quantum dots in semiconductor microcavities

Cavity QED with quantum dots in semiconductor microcavities Cavity QED with quantum dots in semiconductor microcavities M. T. Rakher*, S. Strauf, Y. Choi, N.G. Stolz, K.J. Hennessey, H. Kim, A. Badolato, L.A. Coldren, E.L. Hu, P.M. Petroff, D. Bouwmeester University

More information

attocfm I for Surface Quality Inspection NANOSCOPY APPLICATION NOTE M01 RELATED PRODUCTS G

attocfm I for Surface Quality Inspection NANOSCOPY APPLICATION NOTE M01 RELATED PRODUCTS G APPLICATION NOTE M01 attocfm I for Surface Quality Inspection Confocal microscopes work by scanning a tiny light spot on a sample and by measuring the scattered light in the illuminated volume. First,

More information

A combined NIR filter and trigger sensor for use with a supercontinuum laser

A combined NIR filter and trigger sensor for use with a supercontinuum laser A combined NIR filter and trigger sensor for use with a supercontinuum laser 1. Introduction In recent years, the availability of pulsed supercontinuum lasers has opened up novel applications in optical

More information

Performance of the Prototype NLC RF Phase and Timing Distribution System *

Performance of the Prototype NLC RF Phase and Timing Distribution System * SLAC PUB 8458 June 2000 Performance of the Prototype NLC RF Phase and Timing Distribution System * Josef Frisch, David G. Brown, Eugene Cisneros Stanford Linear Accelerator Center, Stanford University,

More information

Supplementary Materials

Supplementary Materials Supplementary Materials In the supplementary materials of this paper we discuss some practical consideration for alignment of optical components to help unexperienced users to achieve a high performance

More information

It s Our Business to be EXACT

It s Our Business to be EXACT 671 LASER WAVELENGTH METER It s Our Business to be EXACT For laser applications such as high-resolution laser spectroscopy, photo-chemistry, cooling/trapping, and optical remote sensing, wavelength information

More information

Synchronization in Chaotic Vertical-Cavity Surface-Emitting Semiconductor Lasers

Synchronization in Chaotic Vertical-Cavity Surface-Emitting Semiconductor Lasers Synchronization in Chaotic Vertical-Cavity Surface-Emitting Semiconductor Lasers Natsuki Fujiwara and Junji Ohtsubo Faculty of Engineering, Shizuoka University, 3-5-1 Johoku, Hamamatsu, 432-8561 Japan

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

Use of a Hybrid Photo Detector (HPD) in the MAGIC micro power LIDAR system

Use of a Hybrid Photo Detector (HPD) in the MAGIC micro power LIDAR system Use of a Hybrid Photo Detector (HPD) in the MAGIC micro power LIDAR system Christian Fruck cfruck@ph.tum.de Max-Planck-Institut für Physik LIGHT 11 - Ringberg 03.11.2011 1 / 18 Overview MAGIC uses the

More information

Picosecond Light Sources

Picosecond Light Sources 91 Boylston Street, Brookline, MA 02445 tel: (617)566-3821 fax: (617)731-0935 www.boselec.com tcspc@boselec.com Picosecond Light Sources Available with single mode fiber output coupling From Becker & Hickl

More information

Bias errors in PIV: the pixel locking effect revisited.

Bias errors in PIV: the pixel locking effect revisited. Bias errors in PIV: the pixel locking effect revisited. E.F.J. Overmars 1, N.G.W. Warncke, C. Poelma and J. Westerweel 1: Laboratory for Aero & Hydrodynamics, University of Technology, Delft, The Netherlands,

More information

Development of a spectrometry system Using lock-in amplification technique

Development of a spectrometry system Using lock-in amplification technique VNU. JOURNAL OF SCIENCE, Mathematics - Physics, T.xXI, n 0 2, 2005 Development of a spectrometry system Using lock-in amplification technique Department of Physics, College of Science, VNU Abstract. Raman

More information

NEW LASER ULTRASONIC INTERFEROMETER FOR INDUSTRIAL APPLICATIONS B.Pouet and S.Breugnot Bossa Nova Technologies; Venice, CA, USA

NEW LASER ULTRASONIC INTERFEROMETER FOR INDUSTRIAL APPLICATIONS B.Pouet and S.Breugnot Bossa Nova Technologies; Venice, CA, USA NEW LASER ULTRASONIC INTERFEROMETER FOR INDUSTRIAL APPLICATIONS B.Pouet and S.Breugnot Bossa Nova Technologies; Venice, CA, USA Abstract: A novel interferometric scheme for detection of ultrasound is presented.

More information

:... resolution is about 1.4 μm, assumed an excitation wavelength of 633 nm and a numerical aperture of 0.65 at 633 nm.

:... resolution is about 1.4 μm, assumed an excitation wavelength of 633 nm and a numerical aperture of 0.65 at 633 nm. PAGE 30 & 2008 2007 PRODUCT CATALOG Confocal Microscopy - CFM fundamentals :... Over the years, confocal microscopy has become the method of choice for obtaining clear, three-dimensional optical images

More information

ADALAM Sensor based adaptive laser micromachining using ultrashort pulse lasers for zero-failure manufacturing D2.2. Ger Folkersma (Demcon)

ADALAM Sensor based adaptive laser micromachining using ultrashort pulse lasers for zero-failure manufacturing D2.2. Ger Folkersma (Demcon) D2.2 Automatic adjustable reference path system Document Coordinator: Contributors: Dissemination: Keywords: Ger Folkersma (Demcon) Ger Folkersma, Kevin Voss, Marvin Klein (Demcon) Public Reference path,

More information

nanomca-sp datasheet I. FEATURES

nanomca-sp datasheet I. FEATURES datasheet nanomca-sp 80 MHz HIGH PERFORMANCE, LOW POWER DIGITAL MCA WITH BUILT IN PREAMPLIFIER Model Numbers: SP0534A/B to SP0539A/B Standard Models: SP0536B and SP0536A I. FEATURES Built-in preamplifier

More information

NUV and Blue ps Diode Lasers

NUV and Blue ps Diode Lasers High Performance Photon Counting User Manual NUV and Blue ps Diode Lasers Designed and manufactured in cooperation with BDL-SMC Picosecond Diode Lasers 1 BDL-375-SMC BDL-405-SMC BDL-440-SMC BDL-473-SMC

More information