How to seperate the pulses that are acquired from real world according to their pulse heights in LabVIEW.

Hi everybody,
Can any one help in getting out this. Actually I am acquiring gamma rays from proportional counter into the LabVIEW, Coming to the analysis part, I need to seperate the pulses according to their pulse heights. After seperating them I need to digitise the pulses that are seperated. So I request you to sort out this as early as possilbe.
Thanks in advance.
A.Giridhar Yadav.

I am confused about your description. You indicate that you are acquiring the signals but then you want to digitize them later? Any signal processed by LabVIEW has already been digitized because the software only works on numbers, not continuous voltages.
1. How are you acquiring the data from the proportional counter into LV? What DAQ device are you using? What sample rate?
2. What is the duration of the pulses? Gamma pulses from PMT and scintillators are usually rather short.
3. Do you have any log amplifiers or other signal conditioning between the detectors and the DAQ device?
Lynn

Similar Messages

  • My iMac holds my main iTunes account.  How do I find out a list of all the devices that are authorized from this computer?

    My iMac holds my main iTunes account and it shows 4 devices are authorized to play iTunes.  I can only name 3.  How do I find out a list of all the devices that are authorized from this computer?

    I don't believe this is possible, but you can deauthorize all your computers and start over if you are concerned.
    See here
    Best of luck

  • HT1349 how to link the songs that are in itunes to my account so i can to me sales

    how to link the songs that are in itunes to my account so i can to me sale

    You'll need to copy the content on your iPod back to your iTunes library first.  Once you have successfully done that you can safely erase and sync your iPod.
    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • How to capture the values that are being passed to a function module?

    Hello Experts!
    While executing the transaction SBWP  to send a document the FM 'SO_DYNP_SHORT_MESSAGE' gets triggered as soon as the SEND button is pressed would anybody please let me know how i can capture the values that are being passed to it in the process of sending a document?
    Regards
    Sanguine

    Hi
    well, I'm not asking you to explain about how an implicit enhancement can be done. i was just referring to the two options posted in the reply. Is there any other way out apart from the implicit enhancement option. i do find class CL_BS useful as the Method ADD_RECIPIENT gets triggered . even though there's no attachment option in the screen that pops up after the method ADD_RECIPIENT is triggered. would anybody suggest me as how to proceed further to capture the values though without attachment details
    Regards
    sanguine

  • How to identify the files that are exported but still present in Oracle UCM

    Hello All,
    I am using Oracle UCM 11g on Windows OS.
    I want to know that if i have exported the contents from Oracle UCM to external file system, but keeping the contents and metadata into the Oracle UCM. How one will be able to identify that the contents that are being exported? Will there be any attribute set for any such contents indicating that these contents were exported?
    Your help or hint will help me out in resolving the problem.
    Thanks in Advance
    Dipesh

    Hi Srinath,
    Thanks for the reply.
    I did not find the place where to check this?
    On the content tab of the Repository Manager Applet, what is the column do i need to set for indication that the content is archived?
    Regards
    Dipesh

  • How to retrieve the users that are following a document using JSOM / REST APIs in SharePoint 2013

    Hi everyone,
    Does anyone know how to use JSOM / REST APIs to retrieve the users that are following a specific document in SharePoint 2013? 
    Thanks in advance,
    Nam

    Hi Nam,
    Please use the sample code to get the followers for the document. Courtesy: Mokhtar
    Bepari 
    using Microsoft.SharePoint.Client;
    using Microsoft.SharePoint.Client.Social;
    ClientContext clientContext = new ClientContext("http://URL");
    SocialFollowingManager followingManager = new SocialFollowingManager(clientContext);
    SocialActorInfo actorInfo = new SocialActorInfo();
    actorInfo.ContentUri = "<documenturl>"; //set the document url.
    actorInfo.ActorType = SocialActorType.Document;
    //By using the GetFollowed method you can get the people who the current user is following.
    ClientResult < SocialActor[] > followedResult = followingManager.GetFollowed(SocialActorTypes.Users);
    //By using the GetFollowers() method you can get the people who are following the current user.
    ClientResult < SocialActor[] > followersResult = followingManager.GetFollowers();
    clientContext.ExecuteQuery();
    Once you get the resultset you can iterate like below:
    foreach(SocialActor actor in followedResult)
    string name = actor.Name;
    string imageURL = actor.ImageUri;
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Tzupdater.How it reflects the users that are not using the new USA DST rule

    If I update the JRE with tzupdater or just replace it with newer JRE will the time change according to the time zone I live in because I think that the changes in USA DST will not apply for the most of the other countries.

    Hi,
    You can do this directly in OAM, with option "a" (using auxiliary object class). You configure OAM to use the main person object class (inetorgperson) and then you can associate extra auxiliary object classes to it - and header variables can be set from any of the attributes that are in the user's profile, both main and auxiliary.
    Regards,
    Colin

  • How to remove the buttons which are coming from a report?

    Hi All,
    I need to remove the buttons from an iview which is a sap transaction. when i execute the  report program which uses a ldb (PCH) shows a selection screen having all the buttons.
    We have created variants for this.Now i want to remove the buttons which are coming from the report program.how to do this ?
    Lakshmi.

    Hi,
    I think u r mentioning about the addition buttons that appear in the selection screen when using a logical database. for removing these buttons u can use a function module RS_SET_SELSCREEN_STATUS  for setting ur own pf-status
    do this in "at selection screen output" of the program..
    in the tables parameter, u have the option for giving the ok-codes that u want to remove. append all the ok-codes into this table.
    for getting the ok-codes u can use "tab" and go the button.. press F1. it will give the ok-code.
    Regards,
    Anoop

  • How to download the files, that are located in server, from the client?

    Hello folks,
    My program is like that, the files are located in the server and stored in file system.
    I can only know the server name and the directory listing, so that I can show the file names from that directory on the browser.
    The user might downloads those files from the browser and he might deletes those files through the browser.
    That user has valid right to do so and the files can be any type of extension.
    So how can I write this kind of program? Currently the whole system is in struts, so how can I make compatible with struts technology?
    Do u have any ideas?
    Regards,
    Phyo

    Thank you, grigpm. But actually I want the user to select the file that he wants to download rather than setting it in the configuration file. If it is possible, let me see the sample code of FileManager servlet. I've tried with some ways but I can only download from the same server with the application server. I want to download from different server. I hope someone can help me with sample code....
    Best regards,
    Phyo

  • How to zero the values that are greater than 0 at time 0?

    Hello, New user,
    I would like to know how to zero values that are greater than 0 at time 0.  I am totalizing gas flow and understand how not to add the negative numbers but am unsure about the positive numbers at 0 flow.  I hope I have explained this good enough.
    Thank you,
    Lisa

    I don't understand why the value which should be 0 is actually greater than 0.
    How do you determine that the value should be 0, such as no flow, even if the value is greater than 0?
    Ryan Shi
    Hello Ryan,
    The system itself may have an offset of 0.1 V which in the program is related to flow.  I do not wish to add this .1 as flow.  I want to beable to reset the values to 0 and then when there is flow, to add the flow.   If you purchase a program from some vendors you can zero the channel, that is my goal.  I want this to be automatic when a switch is pressed.  Such as:  for 20 seconds, average channel, and use that value as 0 flow then add flow??   I was told averaging may work??
    Thank you again,
    Lisa Williamson

  • How to find the urls that are longer than 260 characters

    Hi
    I'm getting an error using Restore-SPSite thats most likely caused by URL's longer than 260 characters. How can I find out which URL's are too long? It's a huge site collection so it's not an option to search manually.
    Regards
    Jakob

    check this blog, allows you to take an inventory of all files in your web application and flag those files where the path (or URL) is longer than 260 characters.
    Locating files and pages with URLs that are too long for SharePoint
    Also check this: http://social.technet.microsoft.com/Forums/en-US/881d62e6-08c3-43b6-a9f1-96161ffa0201/how-to-write-a-powershell-script-to-find-the-url-path-length-of-all-the-files-and-folders-in?forum=sharepointdevelopmentprevious
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • How to know the concurrents that are scheduled?

    Hi all,
    Is there a way to find the concurrents requests that are scheduled on my APPS enviroment using a SQL query?
    Tks,
    Paulo.

    Paulo,
    Check the following query:
    SQL> select *
    from fnd_concurrent_requests
    where status_code in ('Q','I')
    and requested_start_date > SYSDATE
    and hold_flag = 'N'; Note: 170107.1 - How to Determine Scheduled Concurrent Requests
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=170107.1

  • HT201320 how to correct the mistakes that are on new IPhone that ATT downloaded

    Just had a new phone replace broken one, ATT downloaded my info [ some of it] now I do not know my phone anymore because so much has changed. Is it a new format or did ATT screw up?
    1. Now each email continues a thread indicating the number of email I have for that contact , plust the actual email is attached , which I do not need, Can this tread be removed?
    2. ATT downloaed my contacts which I had added in a specific manner, such as every Sue was entered by last name,  Now, every contact is noted by last name AND  first name in the alphabet, it is so annoying
    Can this be corrected?
    3. ATT downloaded my pictures in a very strange format, each is 1/3 the original size and is loaded sideways, horizontal rotation will not make the photo correct . 
    4. ATT did not download any of my APPS, some of which I had paid for,
    How to get this corrected, as now w/ the new phone, each APP says money is required again
    5. where do I go to have the email have at least 5 lines on screen?
    Thanks for any assistance

    Thanks Srinath.
    I found the document that you recommended in the post. I will try that now!
    Just in case, If wanted to rollback to the original how do I do that ? Since this is my first OAF extension I guess , it wont be perfect the first pass! So, Is there a way to rollback the changes and put back the original VO?
    Please let me know.
    Thanks,
    FR

  • How to add music videos that are not from the itunes store?

    This drives me CRAZY that iTunes will allow me to classify my .mp4 music videos that I get from other sources (NOT bought from the iTunes store) as a Music Video but iTunes STILL keeps it classified under the Movie listing. Does anyone know how I go about or what is needed to get my music video files in the Music Video list?
    While I'm at it...
    It also bugs me that I can't organize my library properly. For example, I have a music performance/concert video and instead of having it in a separate list of "Musical Performances", iTunes contains it under Movies. This is a first for me to complain about my iTunes experience but I just wish there would be some flexibility for me to add content and categorize/list it under my personal preferences. Anything wrong with that?

    If you go to the Get Info menu and set Video Kind to Music Video it will only appear in your music library, and not in the Movie section.
    The tool VideoDrive (www.aroona.net) will automatically classify all your videos when you import them in iTunes, based on file and folder name, the length of the video and other metadata...

  • How to Find the Queries that are not hitting the indexes..

    Guys,
    Hope you all doin well.
    Would you guys please tell me any view , or any resource that can help me to identify those SQL Statements that are not hitting the indexes properly, Causing the system to slow down at peak times.
    Thanks
    Rgrds
    Y.Vo.

    any resource that can help me to identify those SQL Statements that are not hitting the indexes properlyInteresting ! Is there any specific reason of looking only for those queries, which are not making proper use of indexes.
    hare krishna
    Alok

Maybe you are looking for

  • Flash Content on the BBC in Safari 5.0.6

    This question applies to my G5 2.5 gHz Tower running Safari 5.0.6. and an issue with Flash content on the BBC News website. I often the BBC News website, and until a few months ago was able to play all of their video content.  For some inexplicable r

  • ERROR at line N

    If I run the following plsql in sqlplus, /** Comment BEGIN FETCH l_cursor INTO abc ROLLBACK; END; it will report SQL> /****************************************************************************************************************** SQL> /** SQL> /*

  • Why can't I open my college FASFA on Safari 6.0 ?

    I go to the FASFA web site an am not able to open my filed FASFA which I completed on a different computer. It gives me a bunch of options for lower versions of Safari. What gives? Is there a patch I can add on from Apple?

  • UnsatisfiedLinkError: no jpcsc in java.library.path

    Hello, I am using the jpcsc api in my application. I get the error below. I guess i dont have my jpcsc.dll in the right directory, can someone tell me where it should be? UnsatisfiedLinkError: no jpcsc in java.library.path at java.lang.ClassLoader.lo

  • How do we update the existing item in Cache (RWB) without know GUID?

    Hi Friends,     We want to update the existing item in Cache (Value Mapping). Assume that Cache Contains like      IN --> INDIA      FR --> FRANCE      EN --> ENGLAND     We want to change ENGLAND to LONDON. How it is possible ... ? (Assume that abov